From: Mike Bayer Date: Wed, 24 Oct 2018 17:44:09 +0000 (-0400) Subject: block all py.test 3.9.1 or greater until X-Git-Tag: rel_1_0_2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3a4d4f4ab9af6e9726fe1b968b05a81351ba01e8;p=thirdparty%2Fsqlalchemy%2Falembic.git block all py.test 3.9.1 or greater until https://github.com/pytest-dev/pytest/issues/4181 is fixed Change-Id: I867e2b36122f578e69f2444ef9712cd73995cce3 --- 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