diff options
Diffstat (limited to 'README')
| -rw-r--r-- | README | 16 |
1 files changed, 13 insertions, 3 deletions
@@ -8,9 +8,14 @@ pip install -r requirements.txt # django # To run the tests... -cd testproject -export PYTHONPATH=.. -python manage.py test djangorestframework +export PYTHONPATH=. # Ensure djangorestframework is on the PYTHONPATH +python djangorestframework/runtests/runtests.py + + +# To run the test coverage report... + +export PYTHONPATH=. # Ensure djangorestframework is on the PYTHONPATH +python djangorestframework/runtests/runcoverage.py # To run the examples... @@ -24,3 +29,8 @@ python manage.py runserver pip install -r docs/requirements.txt # sphinx sphinx-build -c docs -b html -d docs/build docs html + +# To run the tests against the full set of supported configurations + +deactivate # Ensure we are not currently running in a virtualenv +tox |
