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

Cannot re-run failed tests within PyCharm #11

Closed Bouke closed 11 years ago

Bouke commented 11 years ago

From PyCharm (JetBrains IDEA IDE), I'm used to re-runnin only failed tests as it speeds up the testing enormously. However, when using django-discover-runner, this functionality is broken. PyCharm provides the tests to be run in the same way as Django expects them. This app.tests.MyTestCase is provided as app.MyTestCase.

[python-path] /Applications/PyCharm.app/helpers/pycharm/django_test_manage.py test app.MyTest.test_method [project-path]

So could django-discover-runner also discover tests when provided as using the 'Django convention'?

jezdez commented 11 years ago

No, the app is only for allowing to use the discovery as built-in in unittest2. Hybrid mode would defeat the purpose of this app.