summaryrefslogtreecommitdiff
path: root/tests/README.rst
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2016-10-26 19:15:33 -0400
committerTim Graham <timograham@gmail.com>2016-10-27 08:18:56 -0400
commitd84ffcc22b2a0dbc0a44a67d56da7e3647e2f87a (patch)
tree0d64dac1aedd20d67713ca882b2b5870956f2d08 /tests/README.rst
parentc74378bb77db5bbeac1bd48c0cd31154f96a81d6 (diff)
downloaddjango-d84ffcc22b2a0dbc0a44a67d56da7e3647e2f87a.tar.gz
Updated "running the tests" to use 'pip install -e'.
Diffstat (limited to 'tests/README.rst')
-rw-r--r--tests/README.rst6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/README.rst b/tests/README.rst
index 73bce435e2..7d4ddb513a 100644
--- a/tests/README.rst
+++ b/tests/README.rst
@@ -1,8 +1,10 @@
-To run the test suite::
+To run the test suite, first, create and activate a virtual environment. Then
+install some requirements and run the tests::
$ cd tests
+ $ pip install -e ..
$ pip install -r requirements/py3.txt # or py2.txt
- $ PYTHONPATH=..:$PYTHONPATH ./runtests.py
+ $ ./runtests.py
For more information about the test suite, see
https://docs.djangoproject.com/en/dev/internals/contributing/writing-code/unit-tests/.