]> git.ipfire.org Git - thirdparty/sqlalchemy/alembic.git/commitdiff
block all py.test 3.9.1 or greater until
authorMike Bayer <mike_mp@zzzcomputing.com>
Wed, 24 Oct 2018 17:44:09 +0000 (13:44 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Wed, 24 Oct 2018 17:44:51 +0000 (13:44 -0400)
https://github.com/pytest-dev/pytest/issues/4181 is fixed

Change-Id: I867e2b36122f578e69f2444ef9712cd73995cce3

setup.py
tox.ini

index bd6755f29c1391f88f5b9e4052ef6ba31be89f7d..cb78d94da5bcfe94974d25abb5c00156898f2128 100644 (file)
--- 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 de5e6358d1b7bd6848a556519e6a820ca17cf4d7..23f4f90098e29313b55c633faccc49fd24689a66 100644 (file)
--- 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