Skip to content

Commit 8c41a3e

Browse files
Ugh, still trying to figure this coveralls thing out.
1 parent ae9b9e2 commit 8c41a3e

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ env:
2727
- TEST_TWEET_ID=332992304010899457
2828
- TEST_LIST_ID=574
2929
install: pip install -r requirements.txt
30-
script: nosetests -v test_twython:TwythonAPITestCase test_twython:TwythonAuthTestCase test_twython:TwythonStreamTestCase --logging-filter="twython" --cover-erase --cover-package="twython" --with-coverage
30+
script: coverage run --source=twython setup.py -q nosetests -v --logging-filter="twython" --cover-package="twython" --with-coverage
3131
notifications:
3232
email: false
3333
branches:

setup.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@
3131
open('HISTORY.rst').read(),
3232
include_package_data=True,
3333
packages=packages,
34+
test_suite='nose.collector',
35+
tests_require=['nose'],
36+
extras_require={'test': ['nose']},
3437
classifiers=[
3538
'Development Status :: 4 - Beta',
3639
'Intended Audience :: Developers',

0 commit comments

Comments
 (0)