From 027a242e19da8de738cd154407c812d07b9e79c2 Mon Sep 17 00:00:00 2001 From: Noah Levitt Date: Thu, 3 Aug 2017 15:18:20 -0700 Subject: [PATCH] add missing dependency warcio to tests_require --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index cbc50e6..c09998d 100755 --- a/setup.py +++ b/setup.py @@ -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={