]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
- skip this on oracle
authorMike Bayer <mike_mp@zzzcomputing.com>
Wed, 29 Aug 2012 20:25:20 +0000 (16:25 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Wed, 29 Aug 2012 20:25:20 +0000 (16:25 -0400)
test/ext/declarative/test_inheritance.py

index 7a2cb2deff3f222871f8542b1c5636e1fe9061de..86bd1c28e31fc4687bb44fece5b36c481a3e5947 100644 (file)
@@ -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.