WIP: 3.0.0 #210

Merged
michaelhelmick merged 43 commits from 3.0.0 into master 2013-06-17 10:51:49 -07:00
2 changed files with 4 additions and 1 deletions
Showing only changes of commit 8c41a3e9da - Show all commits

View file

@ -27,7 +27,7 @@ env:
- TEST_TWEET_ID=332992304010899457 - TEST_TWEET_ID=332992304010899457
- TEST_LIST_ID=574 - TEST_LIST_ID=574
install: pip install -r requirements.txt 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: notifications:
email: false email: false
branches: branches:

View file

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