- update to 3.12.0:

* Support Python 3.11.
  * Drop Python 3.6 support.
  * Work on FIPS Python 3.9+, by declaring use of
    ``hashlib.md5()`` as not used for security.
  * Fix crash when pytest’s cacheprovider is disabled.
  * Improve group name in ``pytest --help``.
  * Fix new shuffling to work when one or more test in a class or
    module have the same test id.
  * Rework shuffling algorithm to use hashing. This means that
    running a subset of tests with the same seed will now produce
    the same ordering as running the full set of tests.
    This allows narrowing down ordering-related failures.
  * Add type hints.
  * Support Python 3.10.
- add fix-tests-pytest-73.patch to support pytest 7.3.x

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-randomly?expand=0&rev=26
This commit is contained in:
2023-05-05 00:07:02 +00:00
committed by Git OBS Bridge
parent ed8f2c172f
commit c6fc37b7e9
5 changed files with 123 additions and 15 deletions

View File

@@ -1,3 +1,23 @@
-------------------------------------------------------------------
Thu May 4 22:57:32 UTC 2023 - Dirk Müller <dmueller@suse.com>
- update to 3.12.0:
* Support Python 3.11.
* Drop Python 3.6 support.
* Work on FIPS Python 3.9+, by declaring use of
``hashlib.md5()`` as not used for security.
* Fix crash when pytests cacheprovider is disabled.
* Improve group name in ``pytest --help``.
* Fix new shuffling to work when one or more test in a class or
module have the same test id.
* Rework shuffling algorithm to use hashing. This means that
running a subset of tests with the same seed will now produce
the same ordering as running the full set of tests.
This allows narrowing down ordering-related failures.
* Add type hints.
* Support Python 3.10.
- add fix-tests-pytest-73.patch to support pytest 7.3.x
-------------------------------------------------------------------
Fri Apr 21 12:31:53 UTC 2023 - Dirk Müller <dmueller@suse.com>