Skip to content

Commit

Permalink
Merge pull request #246 from wolever/patch-1
Browse files Browse the repository at this point in the history
Add installation instructions to README
  • Loading branch information
jwhitlock authored Oct 3, 2018
2 parents 347a711 + ef8b6bd commit 7ee49f6
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,38 @@ recommended. It follows the `Django's support policy`_, supporting:
.. _latest release: https://pypi.python.org/pypi/nose
.. _Django's support policy: https://docs.djangoproject.com/en/1.8/internals/release-process/#supported-versions

Installation
------------

You can get django-nose from PyPI with... :

.. code-block:: shell
$ pip install django-nose
The development version can be installed with... :

.. code-block:: shell
$ pip install -e git://github.com/django-nose/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``:

.. code-block:: python
INSTALLED_APPS = (
...
'django_nose',
...
)
Then set ``TEST_RUNNER`` in ``settings.py``:

.. code-block:: python
TEST_RUNNER = 'django_nose.NoseTestSuiteRunner'
Development
-----------
:Code: https://github.com/django-nose/django-nose
Expand Down

0 comments on commit 7ee49f6

Please sign in to comment.