Skip to content

Releases: pytest-dev/pytest-random-order

v1.2.0

Choose a tag to compare

@nicoddemus nicoddemus released this 22 Jun 14:46
v1.2.0

v1.1.1

Choose a tag to compare

@jbasko jbasko released this 20 Jan 09:24
763f0f9

Fix error when cacheprovider plugin disabled or missing. Thanks @jhanm12 for reporting and suggesting the fix.

v1.1.0

Choose a tag to compare

@jbasko jbasko released this 03 Dec 16:29

Fixes coexistence with xdist thanks to @matejsp.

v1.0.4

Choose a tag to compare

@jbasko jbasko released this 30 Nov 15:22
e8ff95f
Fixes randomisation of doctests (#37)

* Fixes issues with doctests reported in #36 - ``class``, ``package`` and ``module`` didn't work because ``DoctestItem`` doesn't have ``cls`` or ``module`` attributes. Thanks @tobywf.
* Deprecates ``none`` bucket type.
* With tox, run tests of pytest-random-order with both pytest 3 and 4.

v1.0.3

Choose a tag to compare

@jbasko jbasko released this 16 Nov 14:46
* Fixes compatibility issues with pytest 4.0.0

* Tests included in the source distribution as requested in #35

v1.0.1

Choose a tag to compare

@jbasko jbasko released this 04 Nov 11:11
d6f8a15
Add diagrams for design illustration (#34)

v1.0.0

Choose a tag to compare

@jbasko jbasko released this 20 Oct 13:40
b1ba942
v1.0.0 (#33)

* Rename the Python package (not the PyPI package) to `random_order` so that pytest's `-p` flag usage is consistent.

Breaking changes:
* Python 3.5+ is required.
* Register the plugin as `random_order` (instead of `random-order`)
* Addresses #32 and perhaps could be useful re: #23 -- Plugin is still enabled by default, but randomisation is turned off by default. Can be enabled with any of the options or with the new `--random-order` flag.

v0.8.0

Choose a tag to compare

@jbasko jbasko released this 13 Jun 00:31
ce58843
v0.8.0 --failed-first works (#30)

Closes #28 - stops breaking `--failed-first` flag.

v0.7.0

Choose a tag to compare

@jbasko jbasko released this 25 Apr 16:37
641fe30
Allow bucketing of test items by their direct parent or grand-parent …

v0.6.0

Choose a tag to compare

@jbasko jbasko released this 19 Mar 21:55
66cb677
pytest-xdist (#25)

Make it work with pytest-xdist as requested in #22 - generate random order seed during command line argument initialisation so that all processes get the same default value.