Skip to content

Commit a43b6fa

Browse files
committed
README
1 parent bedb7d1 commit a43b6fa

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

README.rst

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,16 @@
11
pytest-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

1625
Usage

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def read(fname):
1313

1414
setup(
1515
name='pytest-random-order',
16-
version='0.2.0',
16+
version='0.2.1',
1717
author='Jazeps Basko',
1818
author_email='[email protected]',
1919
maintainer='Jazeps Basko',

0 commit comments

Comments
 (0)