summaryrefslogtreecommitdiff
path: root/test/ext/declarative/test_basic.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2020-07-08 15:48:32 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2020-07-08 17:54:14 -0400
commit43a111e326acae85f4623b8dd507468d99d5ef3a (patch)
tree11622945065bdfcff2e661d5f7e9424cf447d584 /test/ext/declarative/test_basic.py
parente2d4b2e72cb97bc5612fa9d1ec7d0ab15d38efe1 (diff)
downloadsqlalchemy-43a111e326acae85f4623b8dd507468d99d5ef3a.tar.gz
Limit init_subclass test above python 3.6
The commit for I1654befe9eb1c8b8e7fc0784bdbe64284614f0ea #5357 runs the test on all Python 3 versions, however we need to limit at least python 3.6 for this. Change-Id: Ie86b78bbfd8c7bd013ff9aa7f8905328d792c1b3
Diffstat (limited to 'test/ext/declarative/test_basic.py')
-rw-r--r--test/ext/declarative/test_basic.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ext/declarative/test_basic.py b/test/ext/declarative/test_basic.py
index 1c03f7bd9..7713f3d77 100644
--- a/test/ext/declarative/test_basic.py
+++ b/test/ext/declarative/test_basic.py
@@ -2132,7 +2132,7 @@ class DeclarativeTest(DeclarativeTestBase):
assert not hasattr(Foo, "data_hybrid")
- @testing.requires.python3
+ @testing.requires.python36
def test_kw_support_in_declarative_meta_init(self):
# This will not fail if DeclarativeMeta __init__ supports **kw