Is there documentation on the list of things pytest does before the tests functions are ran? #12585
Unanswered
samuelwhiskeyjohnson
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is there documentation on the list of things pytest does before the tests functions are ran?
So far I read Python Testing with Pytest book to know
pytest reads conftest.py and the configuration files such as the pytest.ini file or the tox.ini, setup.cfg, or pyproject.toml files that contain a pytest section. Pytest also collects the all the tests before running the tests.
But I would like to know the exact order and also see this in the documentation.
Beta Was this translation helpful? Give feedback.
All reactions