summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/ext/declarative/test_mixin.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/ext/declarative/test_mixin.py b/test/ext/declarative/test_mixin.py
index 7bc1e1d15..6c2233302 100644
--- a/test/ext/declarative/test_mixin.py
+++ b/test/ext/declarative/test_mixin.py
@@ -289,6 +289,8 @@ class DeclarativeMixinTest(DeclarativeTestBase):
assert len(General.bar.prop.columns) == 1
assert Specific.bar.prop is General.bar.prop
+ @testing.skip_if(lambda: testing.against('oracle'),
+ "Test has an empty insert in it at the moment")
def test_columns_single_inheritance_conflict_resolution(self):
"""Test that a declared_attr can return the existing column and it will
be ignored. this allows conditional columns to be added.