Merge pull request #33 from vbanos/fix-unit-tests

Add missing packages from setup.py, add tox config.
This commit is contained in:
Noah Levitt 2017-09-28 14:35:48 -07:00 committed by GitHub
commit 2e5f8a733a

View File

@ -58,7 +58,7 @@ setuptools.setup(
license='GPL',
packages=['warcprox'],
install_requires=deps,
tests_require=['requests>=2.0.1', 'pytest'], # >=2.0.1 for https://github.com/kennethreitz/requests/pull/1636
tests_require=['requests>=2.0.1', 'pytest', 'warcio'], # >=2.0.1 for https://github.com/kennethreitz/requests/pull/1636
cmdclass = {'test': PyTest},
test_suite='warcprox.tests',
entry_points={