As far as I know, it is possible to run tests for either all installed apps or a single app. Testing all apps seem to be as an overkill as it usually contains also Django’s native modules (django.contrib.auth etc). Is it possible to create a test suite containing only apps I specify (which would cointain all tests from all apps in my project folder in my case)?
As far as I know, it is possible to run tests for either all
Share
you could write a custom test runner that only tests your apps. in the past i’ve used something like
tests/runner.py:you then set this as your default test runner in
settings.py