From 561c71ff5540d92bd82c31f49848d75c77906356 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Wed, 29 Aug 2012 16:25:20 -0400 Subject: [PATCH] - skip this on oracle --- test/ext/declarative/test_inheritance.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/ext/declarative/test_inheritance.py b/test/ext/declarative/test_inheritance.py index 7a2cb2deff..86bd1c28e3 100644 --- a/test/ext/declarative/test_inheritance.py +++ b/test/ext/declarative/test_inheritance.py @@ -478,6 +478,8 @@ class DeclarativeInheritanceTest(DeclarativeTestBase): eq_(sess.query(Engineer).filter_by(primary_language='cobol' ).one(), Engineer(name='vlad', primary_language='cobol')) + @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. -- 2.47.3