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 11pytest-random-order
22===================================
33
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.
514
615----
716
@@ -10,7 +19,7 @@ Installation
1019
1120::
1221
13- $ pip install https://github.com/jbasko/ pytest-random-order/archive/v0.0.0.tar.gz
22+ $ pip install pytest-random-order
1423
1524
1625Usage
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ def read(fname):
1313
1414setup (
1515 name = 'pytest-random-order' ,
16- version = '0.2.0 ' ,
16+ version = '0.2.1 ' ,
1717 author = 'Jazeps Basko' ,
1818 author_email = 'jazeps.basko@gmail.com' ,
1919 maintainer = 'Jazeps Basko' ,
You can’t perform that action at this time.
0 commit comments