Metadata-Version: 2.1
Name: django-skiptest
Version: 1.0.0
Summary: Django Library To Skip Tests
Author: Naveen Singh (Noida, India)
Author-email: naveen.singh@outlook.in
License: UNKNOWN
Keywords: python,django,skip tests,ignore tests,django ignore tests,django skip tests
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown
License-File: LICENSE


django-skiptests
===================

A Simple django library to skip some tests from a Django project.

https://github.com/naveenslog/django-skiptests

Usage
-----

Just add add to your settings.py::

```python
TEST_RUNNER="skiptests.SkipTestRunner"
SKIP_TEST_CLASSES = [
    # Name of the Test Class To Skip
    'TestLogin'
]
```


