diff --git a/pytest.ini b/pytest.ini index 19cf3a00e8..4e440e2a47 100644 --- a/pytest.ini +++ b/pytest.ini @@ -1,4 +1,6 @@ [pytest] DJANGO_SETTINGS_MODULE = tests.integrations.django.myapp.settings addopts = --tb=short -markers = tests_internal_exceptions +markers = + tests_internal_exceptions + only: A temporary marker, to make pytest only run the tests with the mark, similar to jest's `it.only`. To use, run `pytest -v -m only`.