From: Mike Bayer Date: Wed, 17 Oct 2018 19:44:00 +0000 (-0400) Subject: block py.test 3.9.1 X-Git-Tag: rel_1_0_2~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2b85a80838cee20dd7343391d9687c683776df25;p=thirdparty%2Fsqlalchemy%2Falembic.git block py.test 3.9.1 references: https://github.com/pytest-dev/pytest/issues/4181 Change-Id: Iad3b6845e94753c55771419ccd1f99852bc89159 --- diff --git a/setup.py b/setup.py index ff051c54..bd6755f2 100644 --- a/setup.py +++ b/setup.py @@ -66,7 +66,7 @@ setup(name='alembic', license='MIT', packages=find_packages('.', exclude=['examples*', 'test*']), include_package_data=True, - tests_require=['pytest', 'mock', 'Mako'], + tests_require=['pytest!=3.9.1', 'mock', 'Mako'], cmdclass={'test': PyTest}, zip_safe=False, install_requires=requires, diff --git a/tox.ini b/tox.ini index 9c16b9b0..de5e6358 100644 --- a/tox.ini +++ b/tox.ini @@ -9,7 +9,7 @@ SQLA_REPO = {env:SQLA_REPO:git+https://zzzeek@bitbucket.org/zzzeek/sqlalchemy.gi [testenv] cov_args=--cov=alembic --cov-report term --cov-report xml -deps=pytest +deps=pytest!=3.9.1 pytest-xdist mock sqla079: {[tox]SQLA_REPO}@rel_0_7_9