summaryrefslogtreecommitdiff
path: root/tests/README.rst
diff options
context:
space:
mode:
authorRamiro Morales <cramm0@gmail.com>2019-04-14 12:02:36 -0300
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2019-04-18 14:41:15 +0200
commitaed89adad54a977829c4f180b036033e031ebcc7 (patch)
tree95a71faf7fbff157c6a6fdd4e157b83393a228ee /tests/README.rst
parentceab25bc6d0d095acfcea46c35d93c17d008fd35 (diff)
downloaddjango-aed89adad54a977829c4f180b036033e031ebcc7.tar.gz
Fixed #30367 -- Changed "pip install" to "python -m pip install" in docs, comments and hints.
Diffstat (limited to 'tests/README.rst')
-rw-r--r--tests/README.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/README.rst b/tests/README.rst
index 7f64afe6fc..86bd6987cf 100644
--- a/tests/README.rst
+++ b/tests/README.rst
@@ -2,8 +2,8 @@ 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
+ $ python -m pip install -e ..
+ $ python -m pip install -r requirements/py3.txt
$ ./runtests.py
For more information about the test suite, see