From: Mike Bayer Date: Thu, 10 Mar 2016 21:51:00 +0000 (-0500) Subject: - dont need pytest-cov for setup.py test X-Git-Tag: rel_0_8_6~10 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=08f38f4ff71a815418aab392102bae4638ca8472;p=thirdparty%2Fsqlalchemy%2Falembic.git - dont need pytest-cov for setup.py test --- diff --git a/setup.py b/setup.py index bba22667..445e3356 100644 --- a/setup.py +++ b/setup.py @@ -64,7 +64,7 @@ setup(name='alembic', license='MIT', packages=find_packages('.', exclude=['examples*', 'test*']), include_package_data=True, - tests_require=['pytest', 'pytest-cov', 'mock', 'Mako'], + tests_require=['pytest', 'mock', 'Mako'], cmdclass={'test': PyTest}, zip_safe=False, install_requires=requires,