From 3a4d4f4ab9af6e9726fe1b968b05a81351ba01e8 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Wed, 24 Oct 2018 13:44:09 -0400 Subject: [PATCH] block all py.test 3.9.1 or greater until https://github.com/pytest-dev/pytest/issues/4181 is fixed Change-Id: I867e2b36122f578e69f2444ef9712cd73995cce3 --- setup.py | 2 +- tox.ini | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index bd6755f2..cb78d94d 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!=3.9.1', '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 de5e6358..23f4f900 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!=3.9.1 +deps=pytest<3.9.1 pytest-xdist mock sqla079: {[tox]SQLA_REPO}@rel_0_7_9 -- 2.47.2