Python pytest

From John Freier
Revision as of 13:49, 2 May 2023 by Jfreier (Talk | contribs) (Created page with "To run tests in a specific dir pytest path/to/dir To run tests in a specific file pytest path/to/test_file.py To run a specific test in a file pytest path/to/test_file...")

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

To run tests in a specific dir

 pytest path/to/dir

To run tests in a specific file

 pytest path/to/test_file.py

To run a specific test in a file

 pytest path/to/test_file.py::test_function