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'?
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 asapp.MyTestCase
.So could django-discover-runner also discover tests when provided as using the 'Django convention'?