Merge pull request #291 from tomchristie/drop-coverage

Drop coverage in travis tests
This commit is contained in:
Tom Christie 2012-10-13 05:40:55 -07:00
commit ee38c03a15
2 changed files with 4 additions and 6 deletions

View File

@ -10,10 +10,8 @@ env:
- DJANGO=django==1.3.3 --use-mirrors - DJANGO=django==1.3.3 --use-mirrors
install: install:
- pip install $DJANGO - pip install $DJANGO
- pip install -e . --use-mirrors - export PYTHONPATH=.
- pip install -r requirements.txt --use-mirrors
- pip install coverage==3.5.1 --use-mirrors
script: script:
- python setup.py test - python rest_framework/runtests/runtests.py

View File

@ -62,7 +62,7 @@ setup(
author_email='tom@tomchristie.com', author_email='tom@tomchristie.com',
packages=get_packages('rest_framework'), packages=get_packages('rest_framework'),
package_data=get_package_data('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=[], install_requires=[],
classifiers=[ classifiers=[
'Development Status :: 4 - Beta', 'Development Status :: 4 - Beta',