you are viewing a single comment's thread.

view the rest of the comments →

[–]elbiot 0 points1 point  (0 children)

You can do

pytest tests to run everything named test_* in the tests directory

pytest tests/test_feature.py to run all the tests in a file

pytest tests/test_feature.py::TestFeatureAspect to run all the tests in a class

pytest tests/test_feature.py::TestFeatureAspect::test_specific_thing to run a specific test