From: Mike Bayer Date: Tue, 12 Apr 2011 20:30:09 +0000 (-0400) Subject: this test only on sqlite X-Git-Tag: rel_0_6_7~3 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=703a83af52b1d551a0d7f4f1348b93eac35151af;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git this test only on sqlite --- diff --git a/test/dialect/test_sqlite.py b/test/dialect/test_sqlite.py index 9a09153033..f952851acb 100644 --- a/test/dialect/test_sqlite.py +++ b/test/dialect/test_sqlite.py @@ -639,6 +639,8 @@ class TestAutoIncrement(TestBase, AssertsCompiledSQL): class ReflectHeadlessFKsTest(TestBase): + __only_on__ = ('sqlite', ) + def setup(self): testing.db.execute("CREATE TABLE a (id INTEGER PRIMARY KEY)") testing.db.execute("CREATE TABLE b (id INTEGER PRIMARY KEY REFERENCES a)")