jezdez / django-discover-runner

A Django test runner based on unittest2's test discovery.
http://pypi.python.org/pypi/django-discover-runner
Other
132 stars 13 forks source link

Run individual test case #8

Closed fatuhoku closed 11 years ago

fatuhoku commented 11 years ago

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.

jezdez commented 11 years ago

Hm, this should already be possible, tbh. ./manage.py test full.dotted.path.to.test_module.MyTest

jezdez commented 11 years ago

Closing as I'm certain this works right now.