This repository was archived by the owner on Dec 4, 2023. It is now read-only.
This repository was archived by the owner on Dec 4, 2023. It is now read-only.
How to run multiple isolated tests? #35
Closed
Description
I've got multiple test folders - 'tests', 'tests_integration', 'tests_integration2',... Integration tests use different betamax/session configurations. And, they collide, if they are run together with: python -m pytest
I need to run each test folder individually:
python -m pytest tests
python -m pytest tests_integration
python -m pytest tests_integration2
How can I achieve this with pytest-runner
?