python setup.py test

This commit is contained in:
Juda Kaleta 2014-04-04 19:47:03 +02:00
parent 9c0c65e1b4
commit 162d86ee7b
2 changed files with 2 additions and 1 deletions

View file

@ -15,6 +15,6 @@ install:
- pip install testfixtures
script:
- python setup.py build
- nosetests --with-coverage --cover-package=embed_video --cover-tests --cover-erase
- python setup.py nosetests --verbosity 2 --with-coverage --cover-tests --cover-erase
after_success:
- coveralls

View file

@ -32,4 +32,5 @@ setup(
],
keywords=['youtube', 'vimeo', 'video', 'soundcloud'],
install_requires=['requests >= 1.2.3', 'Django >= 1.5'],
test_suite='nose.collector',
)