A pytest plugin to initiate test runs from a specific test file, proceeding alphabetically through the test suite. Perfect for targeted testing scenarios or partial test suite runs.
Install using pip:
pip install pytest-proceedYou can run pytest-proceed by specifying a test file to start from and pass any additional pytest options:
pytest-proceed tests/test_example.py -x -sor
pytest-proceed -x -s tests/test_example.py-
Run all tests starting from a specific file:
pytest-proceed tests/test_example.py
-
Run tests with pytest options (e.g., stop after first failure):
pytest-proceed -x tests/test_example.py