From b9b7199cc6fc1bbfd2dcc51fa5c0abeff45d8e7c Mon Sep 17 00:00:00 2001 From: Mike Helmick Date: Tue, 11 Jun 2013 13:24:11 -0400 Subject: [PATCH] Update requirements nose-cov==1.6 really hope this works >__> --- .travis.yml | 2 +- requirements.txt | 1 + setup.py | 3 --- 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 7fde6a9..9580cc5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -27,7 +27,7 @@ env: - TEST_TWEET_ID=332992304010899457 - TEST_LIST_ID=574 install: pip install -r requirements.txt -script: coverage run --source=twython setup.py -q nosetests -v --logging-filter="twython" --cover-package="twython" --with-coverage +script: nosetests -v test_twython:TwythonAPITestCase test_twython:TwythonAuthTestCase test_twython:TwythonStreamTestCase --logging-filter="twython" --with-cov --cov twython --cov-report term-missing notifications: email: false branches: diff --git a/requirements.txt b/requirements.txt index 1f15209..4a5e6fd 100644 --- a/requirements.txt +++ b/requirements.txt @@ -3,3 +3,4 @@ requests==1.2.2 requests_oauthlib==0.3.2 sphinxjp.themes.basicstrap==0.2.0 python-coveralls==2.1.0 +nose-cov==1.6 diff --git a/setup.py b/setup.py index 8c6d700..6fbaf3d 100755 --- a/setup.py +++ b/setup.py @@ -31,9 +31,6 @@ 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',