From 2b85a80838cee20dd7343391d9687c683776df25 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Wed, 17 Oct 2018 15:44:00 -0400 Subject: [PATCH] block py.test 3.9.1 references: https://github.com/pytest-dev/pytest/issues/4181 Change-Id: Iad3b6845e94753c55771419ccd1f99852bc89159 --- setup.py | 2 +- tox.ini | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 -- 2.47.2