django-nose provides all the goodness of nose in your Django tests, like:
INSTALLED_APPS
tests/__init__.py
. This not only saves busy-work but also eliminates the possibility of accidentally shadowing test classes.It also provides:
django-nose requires nose 1.2.1 or later, and the latest release is recommended. It follows the Django's support policy, supporting:
nose has been in maintenance mode since at least 2015. django-nose
is in maintenance mode as well, and the sole maintainer is no longer an active user. See Jazzband.co to learn how django-nose
is maintained and how you can help. New projects should consider using pytest, or unittest with the Django testing framework.
You can get django-nose from PyPI with... :
$ pip install django-nose
The development version can be installed with... :
$ pip install -e git://github.com/jazzband/django-nose.git#egg=django-nose
Since django-nose extends Django's built-in test command, you should add it to your INSTALLED_APPS
in settings.py
:
INSTALLED_APPS = ( ... 'django_nose', ... )
Then set TEST_RUNNER
in settings.py
:
TEST_RUNNER = 'django_nose.NoseTestSuiteRunner'
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4