django-ignoretests
django-ignoretests copied to clipboard
Tells Django to ignore given application's test
trafficstars
django-ignoretests2
Application to ignore some tests from a Django project (1.6 comptatible).
https://github.com/cyberj/django-ignoretests
Usage
Just add add to your settings.py::
TEST_RUNNER="ignoretests.DjangoIgnoreTestSuiteRunner"
IGNORE_TESTS = (
# Apps to ignore. example : 'django.contrib.auth',
)
If you want to use django-jenkins <http://github.com/kmmbvnr/django-jenkins>_ also add to your settings.py::
JENKINS_TEST_RUNNER="ignoretests.jenkins.JenkinsIgnoreTestSuiteRunner"