Skip to main content

pytest plugin for looping tests

Reason this release was yanked:

missing files due to not having sub folder in src

Project description

pytest-loop is a plugin for pytest that makes it easy to loop a single test, or multiple tests, a specific number of times or for a certain duration of time. This plugin merges pytest-repeat and pytest-stress with a fix for test results.

License PyPI Python versions See Build Status on GitHub Actions Issues Requirements

Requirements

You will need the following prerequisites in order to use pytest-loop: - Python 3.8+ or PyPy - pytest 8 or newer

Installation

To install pytest-loop:

$ pip install pytest-loop

Usage

Iterative Loop:

Use the --loop command line option to specify how many times you want your test, or tests, to be run:

$ pytest --loop=10 test_file.py

Each test collected by pytest will be run n times.

If you want to mark a test in your code to be looped a number of times, you can use the @pytest.mark.loop(n) decorator:

import pytest


@pytest.mark.loop(3)
def test_loop_decorator():
    pass

Time based loop:

Loop tests for 30 seconds:

$ pytest --seconds 30

Loop tests for 45 minutes:

$ pytest --minutes 45

Loop tests for 8 hours:

$ pytest --hours 8

Loop tests for 1 hour 8 minutes and 9 seconds:

$ pytest --hours 1 --minutes 8 --seconds 9

Need to wait some time after each test loop?:

$ pytest --delay 5 --hours 4 --minutes 30

You can also add these values to config files:

[pytest]
addopts = --hours 1 --minutes 30

Note: These loop times include setup and teardown operations as well. So if you have a test setup that takes 5 seconds, your actual tests will run for 5 seconds less than your desired time.

looping a test until failure:

If you are trying to diagnose an intermittent failure, it can be useful to run the same test over and over again until it fails. You can use pytest’s -x option in conjunction with pytest-loop to force the test runner to stop at the first failure. For example:

$ pytest --loop=1000 -x test_file.py

This will attempt to run test_file.py 1000 times, but will stop as soon as a failure occurs.

$ pytest --hours 10 -x test_file.

This will attempt to run test_file.py for 10 hours, but will stop as soon as a failure occurs.

UnitTest Style Tests

Unfortunately pytest-loop is not able to work with unittest.TestCase test classes. These tests will simply always run once, regardless of --loop, and show a warning.

Resources

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_loop-1.0.9.tar.gz (42.1 kB view details)

Uploaded Source

Built Distribution

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

pytest_loop-1.0.9-py3-none-any.whl (3.3 kB view details)

Uploaded Python 3

File details

Details for the file pytest_loop-1.0.9.tar.gz.

File metadata

  • Download URL: pytest_loop-1.0.9.tar.gz
  • Upload date:
  • Size: 42.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for pytest_loop-1.0.9.tar.gz
Algorithm Hash digest
SHA256 4a61dbb9599ac5eec9e1fd38775e4bf72205d581b2c4f0ce74f1978ed0b232e8
MD5 171637b375f716cbe8ccd62a42fefaaf
BLAKE2b-256 ec81d90215e803804f19c95989a0c53670bed587b38da224bd4edbe8881f45da

See more details on using hashes here.

File details

Details for the file pytest_loop-1.0.9-py3-none-any.whl.

File metadata

  • Download URL: pytest_loop-1.0.9-py3-none-any.whl
  • Upload date:
  • Size: 3.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for pytest_loop-1.0.9-py3-none-any.whl
Algorithm Hash digest
SHA256 3cb14ede5bd5535a1c6086933142f59f008ea5ec8ac6c14636b80d07c30e9a27
MD5 4a98cb58970b623ce6e5ccae2607a215
BLAKE2b-256 cd6ad481da0a82a76fcc79bb65e04d6129ee4bfec920069b5abb99ee378276c3

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