You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Extend tox.ini with {posargs} in poetry-pytest invocation
This allows limiting the scope of the test run, which can save much time.
Run all tests:
tox
Run all tests in one file in all test environments:
tox -- tests/test_api.py
Run one test in all test environments:
tox -- tests/test_api.py::test_api
Run all tests in one test environment:
tox -e py39
Run all tests in one file in one test environment:
tox -e py39 -- tests/test_api.py
Run one test in one test environment:
tox -e py39 -- tests/test_api.py::test_api
0 commit comments