diff options
Diffstat (limited to 'test/engine/execute.py')
-rw-r--r-- | test/engine/execute.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/engine/execute.py b/test/engine/execute.py index 5a42c2dd0..80f4e390c 100644 --- a/test/engine/execute.py +++ b/test/engine/execute.py @@ -49,7 +49,7 @@ class ExecuteTest(TestBase): # pyformat is supported for mysql, but skipping because a few driver # versions have a bug that bombs out on this test. (1.2.2b3, 1.2.2c1, 1.2.2) - @testing.unsupported('mysql', 'supported but not covered for MySQLdb') + @testing.skip_if(lambda: testing.against('mysql'), 'db-api flaky') @testing.fails_on_everything_except('postgres') def test_raw_python(self): for conn in (testing.db, testing.db.connect()): |