diff options
| -rw-r--r-- | .travis.yml | 8 | ||||
| -rw-r--r-- | docs/tutorial/quickstart.md | 2 | ||||
| -rwxr-xr-x | setup.py | 2 |
3 files changed, 5 insertions, 7 deletions
diff --git a/.travis.yml b/.travis.yml index dfb08496..0e177a95 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,10 +10,8 @@ env: - DJANGO=django==1.3.3 --use-mirrors install: - - pip install $DJANGO - - pip install -e . --use-mirrors - - pip install -r requirements.txt --use-mirrors - - pip install coverage==3.5.1 --use-mirrors + - pip install $DJANGO + - export PYTHONPATH=. script: - - python setup.py test + - python rest_framework/runtests/runtests.py diff --git a/docs/tutorial/quickstart.md b/docs/tutorial/quickstart.md index 85411378..851db3c7 100644 --- a/docs/tutorial/quickstart.md +++ b/docs/tutorial/quickstart.md @@ -27,7 +27,7 @@ Notice that we're using hyperlinked relations in this case, with `HyperlinkedMod ## Views -Right, we'd better right some views then. Open `quickstart/views.py` and get typing. +Right, we'd better write some views then. Open `quickstart/views.py` and get typing. from django.contrib.auth.models import User, Group from rest_framework import generics @@ -62,7 +62,7 @@ setup( author_email='tom@tomchristie.com', packages=get_packages('rest_framework'), package_data=get_package_data('rest_framework'), - test_suite='rest_framework.runtests.runcoverage.main', + test_suite='rest_framework.runtests.runtests.main', install_requires=[], classifiers=[ 'Development Status :: 4 - Beta', |
