From: Philip Jenvey Date: Fri, 12 Mar 2010 19:07:53 +0000 (-0800) Subject: these pass on +zxjdbc, seemingly because it lacks a sane rowcount X-Git-Tag: rel_0_6beta2~54^2~19^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d1983c22b416c92f3d9a9d3816a44a8b7e190092;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git these pass on +zxjdbc, seemingly because it lacks a sane rowcount --- diff --git a/test/orm/test_naturalpks.py b/test/orm/test_naturalpks.py index 3f327a9072..44dce446b5 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)