From: Mike Bayer Date: Thu, 11 Mar 2010 17:22:49 +0000 (+0000) Subject: - mark tests unsupported by sqlite unsupported by oracle as well X-Git-Tag: rel_0_6beta2~57^2~18 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0712f4aa0a621a0ca20ebdc128ce65bf179740fa;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git - mark tests unsupported by sqlite unsupported by oracle as well --- diff --git a/test/orm/test_naturalpks.py b/test/orm/test_naturalpks.py index fed8b426fd..3f327a9072 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') + @testing.fails_on_everything_except('sqlite', 'oracle') 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') + @testing.fails_on_everything_except('sqlite', 'oracle') def test_pk_nonpassive(self): self._test_pk(False)