actually run some tests on python setup.py test

This commit is contained in:
Kyle Mahan 2016-03-18 18:46:34 -07:00
parent 7c67835ba2
commit 9ac8c44761
2 changed files with 2 additions and 3 deletions

View File

@ -28,9 +28,9 @@ setup(
'BeautifulSoup4', 'BeautifulSoup4',
], ],
tests_require=[ tests_require=[
'tox',
'mock', 'mock',
], ],
test_suite='tests',
classifiers=[ classifiers=[
'Environment :: Web Environment', 'Environment :: Web Environment',
'Intended Audience :: Developers', 'Intended Audience :: Developers',

View File

@ -2,6 +2,5 @@
[tox] [tox]
envlist = py27, py34 envlist = py27, py34
[testenv] [testenv]
deps = deps = mock
py27: mock
commands = python -m unittest discover commands = python -m unittest discover