Skip to main content

pytest plugin to re-run tests to eliminate flaky failures

Project description

pytest-rerunfailures

pytest-rerunfailures is a plugin for py.test that re-runs tests to eliminate intermittent failures.

License PyPI Travis

Requirements

You will need the following prerequisites in order to use pytest-rerunfailures:

  • Python 2.6, 2.7, 3.3, 3.4, 3.5, PyPy, or PyPy3

  • py.test 2.4.2 or newer, except Python 3.5 that needs py.test 2.7.3 or newer

Installation

To install pytest-rerunfailures:

$ pip install pytest-rerunfailures

Re-run all failures

To re-run all test failures, use the --reruns command line option with the maximum number of times you’d like the tests to run:

$ py.test --rerun 5

Re-run individual failures

To mark individual tests as flaky, and have them automatically re-run when they fail, add the flaky mark with the maximum number of times you’d like the test to run:

@pytest.mark.flaky(reruns=5)
def test_example():
    import random
    assert random.choice([True, False])

Note that when teardown fails, two reports are generated for the case, one for the test case and the other for the teardown error.

Output

Here’s an example of the output provided by the plugin when run with --reruns 2 and -r aR:

test_report.py RRF

================================== FAILURES ==================================
__________________________________ test_fail _________________________________

    def test_fail():
>       assert False
E       assert False

test_report.py:9: AssertionError
============================ rerun test summary info =========================
RERUN test_report.py::test_fail
RERUN test_report.py::test_fail
============================ short test summary info =========================
FAIL test_report.py::test_fail
======================= 1 failed, 2 rerun in 0.02 seconds ====================

Note that output will show all re-runs. Tests that fail on all the re-runs will be marked as failed. Due to a current limitation in pytest-xdist, when running tests in parallel only the final result will be included in the output.

Compatibility

  • This plugin may not be used with class, module, and package level fixtures.

  • This plugin is not compatible with pytest-xdist’s –looponfail flag.

  • This plugin is not compatible with the core –pdb flag.

  • The support for Python 3.5 is limited to pytest 2.7.3 and higher. (Will break with TypeError: Call constructor takes either 0 or 3 positional arguments for older versions, see https://github.com/pytest-dev/pytest/issues/744)

Resources

Changelog

2.2 (2017-06-23)

  • Ensure that other plugins can run after this one, in case of a global setting --rerun=0. (Thanks to @sublee for the PR)

2.1.0 (2016-11-01)

  • Add default value of reruns=1 if pytest.mark.flaky() is called without arguments.

  • Also offer a distribution as universal wheel. (Thanks to @tltx for the PR)

2.0.1 (2016-08-10)

  • Prepare CLI options to pytest 3.0, to avoid a deprecation warning.

  • Fix error due to missing CHANGES.rst when creating the source distribution by adding a MANIFEST.in.

2.0.0 (2016-04-06)

  • Drop support for Python 3.2, since supporting it became too much of a hassle. (Reason: Virtualenv 14+ / PIP 8+ do not support Python 3.2 anymore.)

1.0.2 (2016-03-29)

  • Add support for –resultlog option by parsing reruns accordingly. (#28)

1.0.1 (2016-02-02)

  • Improve package description and include CHANGELOG into description.

1.0.0 (2016-02-02)

  • Rewrite to use newer API of pytest >= 2.3.0

  • Improve support for pytest-xdist by only logging the final result. (Logging intermediate results will finish the test rather rerunning it.)

Project details


Download files

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

Source Distribution

pytest-rerunfailures-2.2.tar.gz (7.9 kB view details)

Uploaded Source

Built Distribution

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

pytest_rerunfailures-2.2-py2.py3-none-any.whl (8.5 kB view details)

Uploaded Python 2Python 3

File details

Details for the file pytest-rerunfailures-2.2.tar.gz.

File metadata

File hashes

Hashes for pytest-rerunfailures-2.2.tar.gz
Algorithm Hash digest
SHA256 8546d68f6b515a84bf2bf68eaa9c50ba92894d85ed547f0c413c87e4f7fc16ef
MD5 5f14b0270f70c21379eb787d6f8eff88
BLAKE2b-256 e15a3cf6f273f089dbb4b29cda41679d5f7b99ef6065f49c23cf79687367bce2

See more details on using hashes here.

File details

Details for the file pytest_rerunfailures-2.2-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for pytest_rerunfailures-2.2-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 72f6764e6efd3caa2b097863150c6a55408e519f8c7f1ebeb6024d76f56ef0ac
MD5 8e7aa024d81c2d212e136187a80d1fb9
BLAKE2b-256 88309e2dcafc0715ec72bff617187d22d493420aac975ceaeeb22f98272584d8

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 Pingdom Monitoring Sentry Error logging StatusPage Status page