diff options
| author | Tom Christie | 2014-09-01 12:23:02 +0100 |
|---|---|---|
| committer | Tom Christie | 2014-09-01 12:23:02 +0100 |
| commit | b40525d8e6b3b4839c61053bc1613843d5b8b63d (patch) | |
| tree | 8f76f3c3e23d01de8dc7d9357636c66feebceb7b | |
| parent | 14877464f66600ab89567f846cfd98c7200437e9 (diff) | |
| parent | 278df84a7ceca29b0f3ffa6f3c87b4babe70fad0 (diff) | |
| download | django-rest-framework-b40525d8e6b3b4839c61053bc1613843d5b8b63d.tar.bz2 | |
Merge pull request #1817 from tituomin/testing-requirements-documentation
Correct testing documentation details.
| -rw-r--r-- | CONTRIBUTING.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index ff6018b8..a6dd05a0 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -62,10 +62,10 @@ To run the tests, clone the repository, and then: virtualenv env env/bin/activate pip install -r requirements.txt - pip install -r optionals.txt + pip install -r requirements-test.txt # Run the tests - py.test + ./runtests.py You can also use the excellent [`tox`][tox] testing tool to run the tests against all supported versions of Python and Django. Install `tox` globally, and then simply run: |
