From: Mike Bayer Date: Tue, 8 Dec 2015 15:40:45 +0000 (-0500) Subject: - make this DROP conditional, attempting to isolate why jenkins has X-Git-Tag: rel_1_0_10~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7574762aa0854989bc6afa69d167ed0c693f68d6;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git - make this DROP conditional, attempting to isolate why jenkins has an issue with just one test (cherry picked from commit 7df4054b04ed54504be2c2ab8a83721748130780) --- diff --git a/test/dialect/mysql/test_reflection.py b/test/dialect/mysql/test_reflection.py index ff5b3e681f..01fd60db30 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()