Skip to main content

Pytest rerun class failures plugin

PyPI version Linters Tests Coverage Status codecov Codacy Badge PyPI - License PyPI - Python Version Downloads Downloads

This plugin helps to rerun whole test classes that failed during the test run. This means in case of failure of any class within the test class, the whole class will be rerun. Due to that, in case of failure plugin will fail fast: the rest of the tests in class will be aborted and will not be run. Instead of that, all tests from the class will be rerun starting first one. The plugin supports proper class teardown and reset attribute of the class to initial values. So it will be reset before each rerun.

pytest-rerunclassfailures

Installation

You can install the plugin via pip:

pip install pytest-rerunclassfailures

Usage

After installation plugin ready to use, you do not need to pass extra options or add plugin to pytest.ini. Just run your tests as usual:

pytest tests --rerun-class-max=2

You always need pass --rerun-class-max with number of reruns for the class. By default, the plugin is disabled.

Other options you may use:

  • --rerun-class-max - number of reruns for the class. Default is 0.
  • --rerun-delay - delay between reruns in seconds. Default is 0.5.
  • --rerun-show-only-last - show only last rerun results (without 'reruns' in log), by default is not used.
  • --hide-rerun-details - hide rerun details in the log ('RERUNS' section in terminal), by default is not used.
  • --allow-rerunfailures - silence the startup message about pytest-rerunfailures also being active; see pytest-rerunfailures compatibility below.
PYTHONPATH=. pytest -s tests -p pytest_rerunclassfailures --rerun-class-max=3 --rerun-delay=1 --rerun-show-only-last

In some cases you may manage plugins manually, so, you can do it in two ways:

  • Run your tests with plugin by passing by -p option:
PYTHONPATH=. pytest -s tests -p pytest-rerunclassfailures --rerun-class-max=3
  • Add plugin to pytest.ini file:
[pytest]
plugins = pytest-rerunclassfailures
addopts = --rerun-class-max=3

To disable plugin (even ignoring passed --rerun-class-max option) use:

pytest test -p no:pytest-rerunclassfailures

pytest-xdist support

Plugin supports pytest-xdist plugin. It means that you can run tests in parallel and rerun failed classes in parallel as well. But please note that every class tests method should schedule to run in the same worker. So the plugin can rerun the whole class in the same worker. To do so, you need to run your tests with --dist=loadscope (or --dist=loadfile) option. Otherwise, there's no guarantee that results will be predictable - if a class's tests get scattered across workers, a rerun triggered on one worker may not see every sibling test.

If pytest-xdist is active with -n/--numprocesses and no --dist was passed (xdist then defaults to --dist=load), the plugin prints a one-time message pointing this out, since it's an easy thing to miss - there's no flag to silence it, since there isn't a legitimate reason to run this plugin with --dist=load; just pass --dist=loadscope or --dist=loadfile.

Known limitations

  • Function- and class-scope fixtures used by the rerun class are genuinely torn down (their real finalizers run) and re-invoked between reruns. Module/package/session-scope fixtures are deliberately left untouched, since they may be shared with content outside the rerun class/cycle.
  • The per-test bound class instance (Function._instance/_obj) is also dropped between reruns, so a class attribute set as a side effect of a function-scope fixture whose return value is consumed as a test parameter (not stored on self) no longer leaks stale state from a previous attempt either.
  • Due to pytest-xdist plugin limitations, report output will be thrown only when all tests in class are executed. This means that you will not see the output of the failed test until all tests in the class are rerun. Unfortunately, pytest-xdist plugin allows reporting results for only scheduled tests in scheduled order. Due to that, tests in class will be grouped by test, but not by rerun, as in regular run.

pytest-rerunfailures compatibility

Both plugins hook pytest_runtest_protocol. The test suite still runs if both plugins are active at once - nothing is blocked - but the behavior differs depending on where a test lives, and by default a message is printed once at the start of the run to make sure you notice this:

  • Standalone (non-class) tests cooperate normally. A pytest-rerunfailures marker (@pytest.mark.flaky) or --reruns on a module-level test reruns exactly as pytest-rerunfailures intends; this plugin steps out of the way for anything it doesn't manage.
  • A test method inside a class this plugin reruns is different. The class-level rerun already governs that test's fate, so a pytest-rerunfailures marker (or --reruns) on that method is silently superseded - it never gets its own independent reruns on top of the class-level ones. This is the part that's easy to miss, which is why the startup message calls it out explicitly.

By default, when pytest-rerunfailures is detected, you'll see a message like this once at the start of the run (and again in the warnings summary, unless your own config disables the warnings plugin, in which case it's printed directly so it's never silently lost):

pytest-rerunclassfailures: pytest-rerunfailures is also active. Both plugins hook
pytest_runtest_protocol; a pytest-rerunfailures marker (or --reruns) on a method inside
a class this plugin reruns is silently superseded by the class-level rerun and never
applies on its own. Standalone (non-class) tests are unaffected and cooperate normally
with pytest-rerunfailures. Pass --allow-rerunfailures to silence this message once
you've confirmed that's acceptable for your test suite.

Pass --allow-rerunfailures once you've read and accepted the caveat above, to silence this message on future runs.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pytest_rerunclassfailures-0.2.0.tar.gz (228.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pytest_rerunclassfailures-0.2.0-py3-none-any.whl (13.5 kB view details)

Uploaded Python 3

File details

Details for the file pytest_rerunclassfailures-0.2.0.tar.gz.

File metadata

File hashes

Hashes for pytest_rerunclassfailures-0.2.0.tar.gz
Algorithm Hash digest
SHA256 41b0b6114b9aba70d08edbc5ae316f4ca0f350f2b12022e797a64d2f26a45cb6
MD5 1a015e65d72cb5dabef042f9ed30cc81
BLAKE2b-256 9f64ae9f205a2bb482c03fca27e79400661ad42e09c2e2f1b0e136c342716398

See more details on using hashes here.

File details

Details for the file pytest_rerunclassfailures-0.2.0-py3-none-any.whl.

File metadata

File hashes

Hashes for pytest_rerunclassfailures-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 a4552d2f9479955b01d1776cdb346cbfb437970b4f0430d1d4b7c1ae711dcad4
MD5 b9b4be6a4757db14d319ce9ece487867
BLAKE2b-256 6e58ecb338fd288099c8940d70e6422031f0ab4fad764777f36da66ef075aa07

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page