From e35903e64b98a4f866ce7f91d0b6f3766d415744 Mon Sep 17 00:00:00 2001 From: Philip Jenvey Date: Tue, 23 Jun 2009 01:01:39 +0000 Subject: [PATCH] skip test_raw_qmark/sprintf on zxjdbc --- test/engine/test_execute.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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()): -- 2.47.3