From 7df4054b04ed54504be2c2ab8a83721748130780 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Tue, 8 Dec 2015 10:40:45 -0500 Subject: [PATCH] - make this DROP conditional, attempting to isolate why jenkins has an issue with just one test --- test/dialect/mysql/test_reflection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/dialect/mysql/test_reflection.py b/test/dialect/mysql/test_reflection.py index 09499fae48..351eacea54 100644 --- a/test/dialect/mysql/test_reflection.py +++ b/test/dialect/mysql/test_reflection.py @@ -37,7 +37,7 @@ class TypeReflectionTest(fixtures.TestBase): ) event.listen( m, 'before_drop', - DDL("DROP VIEW mysql_types_v") + DDL("DROP VIEW IF EXISTS mysql_types_v") ) m.create_all() -- 2.47.2