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_1_0b1~84^2~70^2~10 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7df4054b04ed54504be2c2ab8a83721748130780;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git - make this DROP conditional, attempting to isolate why jenkins has an issue with just one test --- 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()