File tree Expand file tree Collapse file tree 2 files changed +12
-3
lines changed Expand file tree Collapse file tree 2 files changed +12
-3
lines changed Original file line number Diff line number Diff line change 1
1
pytest-random-order
2
2
===================================
3
3
4
- Pytest plugin to randomise the order of tests within module, package, or globally.
4
+ **pytest ** plugin to randomise the order of tests within module, package, or globally.
5
+
6
+ This plugin allows you to control the level at which the order of tests is randomised
7
+ through ``--random-order-mode `` command line option.
8
+
9
+ By default, your tests will be randomised at ``module `` level which means that
10
+ tests within a single module X will be executed in no particular order, but tests from
11
+ other modules will not be mixed in between tests of module X.
12
+
13
+ Similarly, you can randomise the order of tests at ``package `` and ``global `` levels.
5
14
6
15
----
7
16
@@ -10,7 +19,7 @@ Installation
10
19
11
20
::
12
21
13
- $ pip install https://github.com/jbasko/ pytest-random-order/archive/v0.0.0.tar.gz
22
+ $ pip install pytest-random-order
14
23
15
24
16
25
Usage
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ def read(fname):
13
13
14
14
setup (
15
15
name = 'pytest-random-order' ,
16
- version = '0.2.0 ' ,
16
+ version = '0.2.1 ' ,
17
17
author = 'Jazeps Basko' ,
18
18
19
19
maintainer = 'Jazeps Basko' ,
You can’t perform that action at this time.
0 commit comments