summaryrefslogtreecommitdiff
path: root/test/base
diff options
context:
space:
mode:
authorFederico Caselli <cfederico87@gmail.com>2021-11-27 09:53:29 +0100
committerMike Bayer <mike_mp@zzzcomputing.com>2021-11-29 16:13:15 -0500
commite8fb73cfb0c765c71e50e7bb0ec92d419076201d (patch)
tree56aed678ebb78a071e3eb8ac2a2d366701145c3d /test/base
parent29c5fba9ad89e53180f0bd2a026742321093105f (diff)
downloadsqlalchemy-e8fb73cfb0c765c71e50e7bb0ec92d419076201d.tar.gz
adapt pytest plugin to support pytest v7
Implemented support for the test suite to run correctly under Pytest 7. Previously, only Pytest 6.x was supported for Python 3, however the version was not pinned on the upper bound in tox.ini. Pytest is not pinned in tox.ini to be lower than version 8 so that SQLAlchemy versions released with the current codebase will be able to be tested under tox without changes to the environment. Much thanks to the Pytest developers for their help with this issue. Change-Id: I3b12166199be2b913ee16e78b3ebbff415654396
Diffstat (limited to 'test/base')
-rw-r--r--test/base/test_except.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/test/base/test_except.py b/test/base/test_except.py
index 6e9a3c5df..0bde988b7 100644
--- a/test/base/test_except.py
+++ b/test/base/test_except.py
@@ -533,7 +533,6 @@ class PickleException(fixtures.TestBase):
for cls_list, callable_list in ALL_EXC:
unroll.extend(product(cls_list, callable_list))
- print(unroll)
return combinations_list(unroll)
@make_combinations()