Ugh, still trying to figure this coveralls thing out.

This commit is contained in:
Mike Helmick 2013-06-11 12:52:22 -04:00
parent ae9b9e2cfc
commit 8c41a3e9da
2 changed files with 4 additions and 1 deletions

View file

@ -27,7 +27,7 @@ env:
- TEST_TWEET_ID=332992304010899457
- TEST_LIST_ID=574
install: pip install -r requirements.txt
script: nosetests -v test_twython:TwythonAPITestCase test_twython:TwythonAuthTestCase test_twython:TwythonStreamTestCase --logging-filter="twython" --cover-erase --cover-package="twython" --with-coverage
script: coverage run --source=twython setup.py -q nosetests -v --logging-filter="twython" --cover-package="twython" --with-coverage
notifications:
email: false
branches:

View file

@ -31,6 +31,9 @@ setup(
open('HISTORY.rst').read(),
include_package_data=True,
packages=packages,
test_suite='nose.collector',
tests_require=['nose'],
extras_require={'test': ['nose']},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',