From: Philip Jenvey Date: Tue, 23 Jun 2009 01:01:39 +0000 (+0000) Subject: skip test_raw_qmark/sprintf on zxjdbc X-Git-Tag: rel_0_6_6~163 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e35903e64b98a4f866ce7f91d0b6f3766d415744;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git skip test_raw_qmark/sprintf on zxjdbc --- diff --git a/test/engine/test_execute.py b/test/engine/test_execute.py index c4bf7eb6eb..779eda4d7f 100644 --- a/test/engine/test_execute.py +++ b/test/engine/test_execute.py @@ -28,7 +28,7 @@ class ExecuteTest(TestBase): def teardown_class(cls): metadata.drop_all() - @testing.fails_on_everything_except('firebird', 'maxdb', 'sqlite', 'mysql+pyodbc') + @testing.fails_on_everything_except('firebird', 'maxdb', 'sqlite', 'mysql+pyodbc', '+zxjdbc') def test_raw_qmark(self): for conn in (testing.db, testing.db.connect()): conn.execute("insert into users (user_id, user_name) values (?, ?)", (1,"jack")) @@ -41,6 +41,7 @@ class ExecuteTest(TestBase): conn.execute("delete from users") @testing.fails_on_everything_except('mysql+mysqldb', 'postgres') + @testing.fails_on('+zxjdbc', 'sprintf not supported') # some psycopg2 versions bomb this. def test_raw_sprintf(self): for conn in (testing.db, testing.db.connect()):