Using ./manage.py test full.dotted.path.to.test_module syntax it is possible to all tests in a module. However, it is not possible to run a specific test inside the test module. This issue proposes that ./manage.py test full.dotted.path.to.test_module.test_specific syntax be supported, which runs the test test_specific inside of test_module only.
This is useful for picking a particular Selenium test to run for development.
Using
./manage.py test full.dotted.path.to.test_module
syntax it is possible to all tests in a module. However, it is not possible to run a specific test inside the test module. This issue proposes that./manage.py test full.dotted.path.to.test_module.test_specific
syntax be supported, which runs the testtest_specific
inside oftest_module
only.This is useful for picking a particular Selenium test to run for development.