summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/orm/test_naturalpks.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/orm/test_naturalpks.py b/test/orm/test_naturalpks.py
index 3f327a907..44dce446b 100644
--- a/test/orm/test_naturalpks.py
+++ b/test/orm/test_naturalpks.py
@@ -594,7 +594,7 @@ class CascadeToFKPKTest(_base.MappedTest, testing.AssertsCompiledSQL):
self._test_onetomany(True)
# PG etc. need passive=True to allow PK->PK cascade
- @testing.fails_on_everything_except('sqlite', 'oracle')
+ @testing.fails_on_everything_except('sqlite', 'oracle', '+zxjdbc')
def test_onetomany_nonpassive(self):
self._test_onetomany(False)
@@ -737,7 +737,7 @@ class JoinedInheritanceTest(_base.MappedTest):
self._test_pk(True)
# PG etc. need passive=True to allow PK->PK cascade
- @testing.fails_on_everything_except('sqlite', 'oracle')
+ @testing.fails_on_everything_except('sqlite', 'oracle', '+zxjdbc')
def test_pk_nonpassive(self):
self._test_pk(False)
@@ -747,7 +747,7 @@ class JoinedInheritanceTest(_base.MappedTest):
self._test_fk(True)
# PG etc. need passive=True to allow PK->PK cascade
- @testing.fails_on_everything_except('sqlite')
+ @testing.fails_on_everything_except('sqlite', '+zxjdbc')
def test_fk_nonpassive(self):
self._test_fk(False)