Django 1.6 gives error
Running the ./manage.py test or coverage run ... throws an error in Django 1.6
The error report reads something like — You are using Django >= 1.6 which comes with an own version of the discover test runner. Please remove 'discover_runner' from the INSTALLED_APPS and TEST_RUNNER settings and use the official runner instead.
Sorry You must be a logged in, registered user to answer a question.
Answers
It shouldn't run only Django's tests. If you want to be extra careful, run your tests directly, e.g. python manage.py test blog
So...remove 'discover_runner' from your INSTALLED_APPS and the TEST_RUNNER settings and try again?
I could do that, but I was wondering that it might trigger Django's default test script and not the custom test scripts that we defined within the "testing" folder?