aboutsummaryrefslogtreecommitdiffstats
path: root/README
diff options
context:
space:
mode:
authormarkotibold2011-03-15 22:40:30 +0100
committermarkotibold2011-03-15 22:40:30 +0100
commit9ba66a19f814484d86e6a750b27d47b2c4e21033 (patch)
tree8b7ee7525d446f0a02fbd138f4f021b24727e961 /README
parentecb82b0318f5dae29f4a00416fb279dff549c3b1 (diff)
parent80e98de9337b7fd735729dbad09d3d629466719c (diff)
downloaddjango-rest-framework-9ba66a19f814484d86e6a750b27d47b2c4e21033.tar.bz2
Merge with a0fec27963ebb52d39cdad42d5a7fd428f989784
Diffstat (limited to 'README')
-rw-r--r--README16
1 files changed, 13 insertions, 3 deletions
diff --git a/README b/README
index a7dc3e92..d74aa474 100644
--- a/README
+++ b/README
@@ -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