Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

python313-pytest-rerunfailures-16.1-1.1 RPM for noarch

From OpenSuSE Ports Tumbleweed for noarch

Name: python313-pytest-rerunfailures Distribution: openSUSE Tumbleweed
Version: 16.1 Vendor: openSUSE
Release: 1.1 Build date: Mon Feb 9 17:40:28 2026
Group: Unspecified Build host: reproducible
Size: 93674 Source RPM: python-pytest-rerunfailures-16.1-1.1.src.rpm
Packager: http://bugs.opensuse.org
Url: https://github.com/pytest-dev/pytest-rerunfailures
Summary: A pytest plugin to re-run tests
The pytest-rerunfailures package is a plugin for Pytest that re-runs
tests to eliminate intermittent failures.

Provides

Requires

License

MPL-2.0

Changelog

* Mon Feb 09 2026 Andreas Prittwitz <m4ng4n@gmx.de>
  - Update to version 16.1
    * Change version requirements to specification.
    * Change source path to reflect change in source name.
    * Drop support for Python 3.9.
    * Changed "localhost" to "127.0.0.1" to avoid bad
      hostname resolution.
    * Added ``--force-reruns`` to override rerun count globally.
      Fixes #306
      <https://github.com/pytest-dev/pytest-rerunfailures/issues/306>.
  - Changes in version 16.0.1
    * Reverted the ability to access error attributes because of an
      incompatibility with
      `pytest-xdist <https://github.com/pytest-dev/pytest-xdist/issues/843>.
      Fixes #302
      <https://github.com/pytest-dev/pytest-rerunfailures/issues/302>,
      and  #303
      <https://github.com/pytest-dev/pytest-rerunfailures/issues/303>.
  - Changes in version 16.0
    * Drop support for pytest < 8.
    * Add support for pytest 8.4.x.
    * Add support for upcoming Python 3.14.
    * Allow ``@pytest.mark.flaky(condition)`` to accept a callable or
      a string to be evaluated. The evaluated string has access to
      the exception instance via the ``error`` object. #230
      <https://github.com/pytest-dev/pytest-rerunfailures/issues/230>.
  - Changes in version 15.1
    * Fix ``--fail-on-flaky`` option to fail the test run with custom
      exit code only when reruns are detected. #287
      <https://github.com/pytest-dev/pytest-rerunfailures/issues/287>
    * Switched to using the SPDX license identifier in the
      project metadata.
    * Change exception filtering logic to match ``AssertionError``
      raised via ``assert`` statements when filtering by
      "AssertionError".#292
      <https://github.com/pytest-dev/pytest-rerunfailures/issues/292>
* Mon Nov 25 2024 Dirk Müller <dmueller@suse.com>
  - update to 15.0:
    * Drop support for Python 3.8.
    * Drop support for pytest < 7.4.
    * Fix compatibility with pytest 8.2.
    * Add support for pytest 8.2, 8.3.
    * Add --fail-on-flaky option to fail the test run with custom
      exit code when test passed on rerun.
* Tue May 07 2024 Steve Kowalik <steven.kowalik@suse.com>
  - Switch to pyproject macros.
  - Skip some tests that have been broken by pytest 8.2.
* Sat Mar 16 2024 Dirk Müller <dmueller@suse.com>
  - update to 14.0:
    * Fix missing teardown for non-function scoped fixtures when
      using only_rerun or rerun_except queries. (#234) and
    * Drop support for Python 3.7.
    * Drop support for pytest < 7.2.
    * Add support for pytest 8.0, 8.1.
* Thu Dec 14 2023 Dirk Müller <dmueller@suse.com>
  - update to 13.0:
    * Drop support for pytest < 7.0.
    * Add support for Python 3.12.
    * Fix crashitem names mismatch between client and server.
    * Fix crash when setup fails with --rerun-except flag.
* Mon Jul 24 2023 Dirk Müller <dmueller@suse.com>
  - update to 12.0:
    * Drop support for pytest < 6.2.
    * Add ``only_rerun`` and ``rerun_except`` arguments to
      ``@pytest.mark.flaky`` marker.
    * Add support for pytest 7.3, 7.4.
    * Failures are now rerun only if they match at least one
      ``--only-rerun`` pattern (if given) and none of the
      ``--rerun-except`` patterns. Previously, using both
      ``--only-rerun`` and ``--rerun-except`` together
      could cause failures to be rerun even if they did not
      match any ``--only-rerun`` pattern, and when using
      multiple ``--rerun-except`` patterns, all failures
      would be rerun unless they matched every pattern.
* Tue May 09 2023 Dirk Müller <dmueller@suse.com>
  - update to 11.1.2:
    * Execute teardown when test was skipped in setup phase of a
      fixture.
    * Fix crash during teardown when runtest protocol hook is
      overwritten by another plugin.
    * Fix crash during teardown when TestCase class is used as base
      class.
    * Run teardown of session, class, ... scoped fixtures only once
      after rerunning tests
    * Expose `reruns` and `reruns_delay` through `pytest.ini` file.
    * Drop support for Python 3.6.
    * Drop support for pytest < 6.
    * Fix crash when pytest-xdist is installed but disabled.
    * Fix crash when xfail(strict=True) mark is used with --rerun-
      only flag.
    * Added option `--rerun-except` to rerun failed tests those are
      other than the mentioned Error.
    * Add support for Python 3.11.
    * Add support for pytest 7.0, 7.1, 7.2.
* Fri Apr 21 2023 Dirk Müller <dmueller@suse.com>
  - add sle15_python_module_pythons (jsc#PED-68)
* Thu Apr 13 2023 Matej Cepl <mcepl@suse.com>
  - Make calling of %{sle15modernpython} optional.
* Mon Mar 28 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.

Files

/usr/lib/python3.13/site-packages/__pycache__/pytest_rerunfailures.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/__pycache__/pytest_rerunfailures.cpython-313.pyc
/usr/lib/python3.13/site-packages/pytest_rerunfailures-16.1.dist-info
/usr/lib/python3.13/site-packages/pytest_rerunfailures-16.1.dist-info/INSTALLER
/usr/lib/python3.13/site-packages/pytest_rerunfailures-16.1.dist-info/METADATA
/usr/lib/python3.13/site-packages/pytest_rerunfailures-16.1.dist-info/RECORD
/usr/lib/python3.13/site-packages/pytest_rerunfailures-16.1.dist-info/REQUESTED
/usr/lib/python3.13/site-packages/pytest_rerunfailures-16.1.dist-info/WHEEL
/usr/lib/python3.13/site-packages/pytest_rerunfailures-16.1.dist-info/entry_points.txt
/usr/lib/python3.13/site-packages/pytest_rerunfailures-16.1.dist-info/licenses
/usr/lib/python3.13/site-packages/pytest_rerunfailures-16.1.dist-info/licenses/LICENSE
/usr/lib/python3.13/site-packages/pytest_rerunfailures-16.1.dist-info/top_level.txt
/usr/lib/python3.13/site-packages/pytest_rerunfailures.py
/usr/share/doc/packages/python313-pytest-rerunfailures
/usr/share/doc/packages/python313-pytest-rerunfailures/CHANGES.rst
/usr/share/doc/packages/python313-pytest-rerunfailures/README.rst
/usr/share/licenses/python313-pytest-rerunfailures
/usr/share/licenses/python313-pytest-rerunfailures/LICENSE


Generated by rpm2html 1.8.1

Fabrice Bellet, Thu Feb 12 23:07:14 2026