@@ -228,58 +228,6 @@ pass undeservedly, you can disable it:
228228Note that randomisation is disabled by default. By passing ``-p no:random_order `` you are stopping the plugin
229229from being registered so its hooks won't be registered and its command line options won't appear in ``--help ``.
230230
231- --------------
232- Changelog
233- --------------
234-
235- v1.1.1 (2024-01-20)
236- +++++++++++++++++++
237-
238- * Fixes #54 - ``AttributeError `` when cacheprovider plugin disabled. Thanks @jhanm12
239-
240-
241- v1.1.0 (2022-12-03)
242- +++++++++++++++++++
243-
244- * Fixes xdist support (thanks @matejsp)
245-
246-
247- v1.0.4 (2018-11-30)
248- +++++++++++++++++++
249-
250- * Fixes issues with doctests reported in #36 - ``class ``, ``package `` and ``module `` didn't work
251- because ``DoctestItem `` doesn't have ``cls `` or ``module `` attributes. Thanks @tobywf.
252- * Deprecate ``none `` bucket type. **Update **: this was a mistake, it will be kept for backwards compatibility.
253- * With tox, run tests of pytest-random-order with both pytest 3 and 4.
254-
255- v1.0.3 (2018-11-16)
256- +++++++++++++++++++
257-
258- * Fixes compatibility issues with pytest 4.0.0, works with pytest 3.0+ as before.
259- * Tests included in the source distribution.
260-
261- v1.0.0 (2018-10-20)
262- +++++++++++++++++++
263-
264- * Plugin no longer alters the test order by default. You will have to either 1) pass ``--random-order ``,
265- or ``--random-order-bucket=<bucket> ``, or ``--random-order-seed=<seed> ``, or
266- 2) edit your pytest configuration file and add one of these options
267- there under ``addopts ``, or 3) specify these flags in environment variable ``PYTEST_ADDOPTS ``.
268- * Python 3.5+ is required. If you want to use this plugin with Python 2.7, use v0.8.0 which is stable and fine
269- if you are happy with it randomising the test order by default.
270- * The name under which the plugin registers itself is changed from ``random-order `` (hyphen) to ``random_order ``
271- (underscore). This addresses the issue of consistency when disabling or enabling this plugin via the standard
272- ``-p `` flag. Previously, the plugin could be disabled by passing ``-p no:random-order `` yet re-enabled
273- only by passing ``-p pytest_random_order.plugin ``. Now they are ``-p no:random_order ``
274- to disable and ``-p random_order.plugin `` to enable (The ``.plugin `` bit, I think, is required because
275- pytest probably thinks it's an unrelated thing to ``random_order `` and import it, yet without it it's the
276- same thing so doesn't import it).
277-
278-
279- v0.8.0
280- ++++++
281-
282- * pytest cache plugin's ``--failed-first `` works now.
283231
284232-------
285233Credits
0 commit comments