Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 547 Bytes

File metadata and controls

20 lines (13 loc) · 547 Bytes

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 also add to your settings.py:

JENKINS_TEST_RUNNER="ignoretests.jenkins.JenkinsIgnoreTestSuiteRunner"