Metadata-Version: 1.1
Name: django-ignoretests
Version: 0.3.1
Summary: Ignore tests of given django apps
Home-page: https://github.com/cyberj/django-ignoretests
Author: Johan Charpentier
Author-email: cyberj@arcagenis.org
License: MIT
Description: django-ignoretests
        ==================
        
        Application to ignore some tests from a Django project.
        
        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"
        
        Changelog
        ---------
        
        2012-04-10 - 0.3
        
          * Add a try-except block so that django apps that do not have models.py file do not break the test run
          * Doc fixes
        
        2011-05-05 - 0.2
        
          * Add Jenkins compatibility
        
        2011-02-13 
        
          * Initial release
        
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Framework :: Django
Classifier: License :: OSI Approved :: MIT License
