@@ -18,34 +18,34 @@ django-nose
18
18
19
19
**django-nose ** provides all the goodness of `nose `_ in your Django tests, like:
20
20
21
- * Testing just your apps by default, not all the standard ones that happen to
22
- be in ``INSTALLED_APPS ``
23
- * Running the tests in one or more specific modules (or apps, or classes, or
24
- folders, or just running a specific test)
25
- * Obviating the need to import all your tests into ``tests/__init__.py ``.
26
- This not only saves busy-work but also eliminates the possibility of
27
- accidentally shadowing test classes.
28
- * Taking advantage of all the useful `nose plugins `_
21
+ * Testing just your apps by default, not all the standard ones that happen to
22
+ be in ``INSTALLED_APPS ``
23
+ * Running the tests in one or more specific modules (or apps, or classes, or
24
+ folders, or just running a specific test)
25
+ * Obviating the need to import all your tests into ``tests/__init__.py ``.
26
+ This not only saves busy-work but also eliminates the possibility of
27
+ accidentally shadowing test classes.
28
+ * Taking advantage of all the useful `nose plugins `_
29
29
30
30
.. _nose : https://nose.readthedocs.io/en/latest/
31
31
.. _nose plugins : http://nose-plugins.jottit.com/
32
32
33
33
It also provides:
34
34
35
- * Fixture bundling, an optional feature which speeds up your fixture-based
36
- tests by a factor of 4
37
- * Reuse of previously created test DBs, cutting 10 seconds off startup time
38
- * Hygienic TransactionTestCases, which can save you a DB flush per test
39
- * Support for various databases. Tested with MySQL, PostgreSQL, and SQLite.
40
- Others should work as well.
35
+ * Fixture bundling, an optional feature which speeds up your fixture-based
36
+ tests by a factor of 4
37
+ * Reuse of previously created test DBs, cutting 10 seconds off startup time
38
+ * Hygienic TransactionTestCases, which can save you a DB flush per test
39
+ * Support for various databases. Tested with MySQL, PostgreSQL, and SQLite.
40
+ Others should work as well.
41
41
42
42
django-nose requires nose 1.2.1 or later, and the `latest release `_ is
43
43
recommended. It follows the `Django's support policy `_, supporting:
44
44
45
- * Django 1.8 (LTS) with Python 2.7, 3.4, or 3.5
46
- * Django 1.9 with Python 2.7, 3.4, or 3.5
47
- * Django 1.10 with Python 2.7, 3.4, or 3.5
48
- * Django 1.11 (LTS) with Python 2.7, 3.4, 3.5, or 3.6
45
+ * Django 1.8 (LTS) with Python 2.7, 3.4, or 3.5
46
+ * Django 1.9 with Python 2.7, 3.4, or 3.5
47
+ * Django 1.10 with Python 2.7, 3.4, or 3.5
48
+ * Django 1.11 (LTS) with Python 2.7, 3.4, 3.5, or 3.6
49
49
50
50
.. _latest release : https://pypi.python.org/pypi/nose
51
51
.. _Django's support policy : https://docs.djangoproject.com/en/1.8/internals/release-process/#supported-versions
0 commit comments