Accepting request 965494 from home:bnavigator:branches:devel:languages:python:pytest

- Update to 10.2
  * Allow recovery from crashed tests with pytest-xdist.
  * Add support for Python 3.10 (as of Python 3.10.rc2). (Thanks to
    @hugovk for the PR.)
  * Allows using a str as condition for
    @pytest.mark.flaky(condition) which gets evaluated dynamically
    similarly to @pytest.mark.skipif(condition). (#162 provided by
    @15klli)
  * Drop support for Python 3.5.
  * Drop support for pytest < 5.3.
  * Add condition keyword argument to the re-run marker. (Thanks to
    @BeyondEvil for the PR.)
  * Add support for Python 3.9. (Thanks to @digitronik for the PR.)
  * Add support for pytest 6.3. (Thanks to @bluetech for the PR.)
  * Add compatibility with pytest-xdist >= 2.0. (Thanks to
    @bluetech for the PR.)
  * Check for the resultlog by feature and not by version as pytest
    master does not provide a consistent version.

OBS-URL: https://build.opensuse.org/request/show/965494
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-rerunfailures?expand=0&rev=15
This commit is contained in:
2022-03-29 19:44:48 +00:00
committed by Git OBS Bridge
parent 86174dda62
commit 4eadb68017
4 changed files with 33 additions and 9 deletions

View File

@@ -1,3 +1,25 @@
-------------------------------------------------------------------
Mon Mar 28 20:58:33 UTC 2022 - Ben Greiner <code@bnavigator.de>
- Update to 10.2
* Allow recovery from crashed tests with pytest-xdist.
* Add support for Python 3.10 (as of Python 3.10.rc2). (Thanks to
@hugovk for the PR.)
* Allows using a str as condition for
@pytest.mark.flaky(condition) which gets evaluated dynamically
similarly to @pytest.mark.skipif(condition). (#162 provided by
@15klli)
* Drop support for Python 3.5.
* Drop support for pytest < 5.3.
* Add condition keyword argument to the re-run marker. (Thanks to
@BeyondEvil for the PR.)
* Add support for Python 3.9. (Thanks to @digitronik for the PR.)
* Add support for pytest 6.3. (Thanks to @bluetech for the PR.)
* Add compatibility with pytest-xdist >= 2.0. (Thanks to
@bluetech for the PR.)
* Check for the resultlog by feature and not by version as pytest
master does not provide a consistent version.
-------------------------------------------------------------------
Sat Nov 7 18:33:40 UTC 2020 - Benjamin Greiner <code@bnavigator.de>