nose.collector wasn't working

This commit is contained in:
Noah Levitt 2013-12-06 15:22:29 -08:00
parent 1f0a894eba
commit 9c6c18d274
2 changed files with 4 additions and 4 deletions

View File

@ -14,8 +14,8 @@ setuptools.setup(name='warcprox',
packages=['warcprox'],
install_requires=['pyopenssl', 'warctools>=4.8.3'], # gdbm/dbhash?
dependency_links=['git+https://github.com/nlevitt/warctools.git@python3#egg=warctools-4.8.3'],
tests_require=['nose', 'requests>=2.0.1'], # >=2.0.1 for https://github.com/kennethreitz/requests/pull/1636
test_suite='nose.collector',
tests_require=['requests>=2.0.1'], # >=2.0.1 for https://github.com/kennethreitz/requests/pull/1636
test_suite='warcprox.tests.test_warcprox',
scripts=['bin/dump-anydbm', 'bin/warcprox'],
zip_safe=False)

View File

@ -7,5 +7,5 @@
envlist = py27, py32, py33
[testenv]
commands = {envpython} setup.py test
commands = {envpython} -m unittest discover
deps = requests>=2.0.1