Skip to content

Commit 1873ab7

Browse files
authored
Merge pull request #285 from jwhitlock/fix_readme
Fix indentation in README
2 parents 308237e + 7059eb6 commit 1873ab7

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

README.rst

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -18,34 +18,34 @@ django-nose
1818
1919
**django-nose** provides all the goodness of `nose`_ in your Django tests, like:
2020

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`_
2929

3030
.. _nose: https://nose.readthedocs.io/en/latest/
3131
.. _nose plugins: http://nose-plugins.jottit.com/
3232

3333
It also provides:
3434

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.
4141

4242
django-nose requires nose 1.2.1 or later, and the `latest release`_ is
4343
recommended. It follows the `Django's support policy`_, supporting:
4444

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
4949

5050
.. _latest release: https://pypi.python.org/pypi/nose
5151
.. _Django's support policy: https://docs.djangoproject.com/en/1.8/internals/release-process/#supported-versions

0 commit comments

Comments
 (0)