Skip to content

Releases: pytest-dev/pytest-random-order

v1.1.1

20 Jan 09:24
763f0f9
Compare
Choose a tag to compare

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

v1.1.0

03 Dec 16:29
Compare
Choose a tag to compare

Fixes coexistence with xdist thanks to @matejsp.

v1.0.4

30 Nov 15:22
e8ff95f
Compare
Choose a tag to compare
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

16 Nov 14:46
Compare
Choose a tag to compare
* Fixes compatibility issues with pytest 4.0.0

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

v1.0.1

04 Nov 11:11
d6f8a15
Compare
Choose a tag to compare
Add diagrams for design illustration (#34)

v1.0.0

20 Oct 13:40
b1ba942
Compare
Choose a tag to compare
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

13 Jun 00:31
ce58843
Compare
Choose a tag to compare
v0.8.0 --failed-first works (#30)

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

v0.7.0

25 Apr 16:37
641fe30
Compare
Choose a tag to compare
Allow bucketing of test items by their direct parent or grand-parent …

v0.6.0

19 Mar 21:55
66cb677
Compare
Choose a tag to compare
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.

v0.5.6

16 Mar 08:59
Compare
Choose a tag to compare
Update README