I have my tests for a Django application in a tests directory:
my_project/apps/my_app/ ├── __init__.py ├── tests │ ├── __init__.py │ ├── field_tests.py │ └
Wrong:
python manage.py test my_app.tests.storage_tests:TestCase.test_name
is in fact with slashes until the class name and with the extension of the file
Right:
python manage.py test my_app/tests/storage_tests.py:TestCase.test_name