From: Mike Bayer Date: Mon, 2 Nov 2009 03:07:13 +0000 (+0000) Subject: omit this test for non-oracle X-Git-Tag: rel_0_6beta1~200 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e2ca4ebe58810c9f317370255a26cd6c706f60d9;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git omit this test for non-oracle --- diff --git a/test/dialect/test_oracle.py b/test/dialect/test_oracle.py index 2630698174..b572092957 100644 --- a/test/dialect/test_oracle.py +++ b/test/dialect/test_oracle.py @@ -561,6 +561,8 @@ class BufferedColumnTest(TestBase, AssertsCompiledSQL): eq_(result, [(i, stream) for i in range(1, 11)]) class UnsupportedIndexReflectTest(TestBase): + __only_on__ = 'oracle' + def setup(self): global metadata metadata = MetaData(testing.db)