summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2015-12-08 10:40:45 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2015-12-08 10:40:45 -0500
commit7df4054b04ed54504be2c2ab8a83721748130780 (patch)
treed1c918f9602016fcf3d4ab32e59ed7875998281a
parent3f42743d6aa1326a80a0ed720a92266aa5fbf209 (diff)
downloadsqlalchemy-7df4054b04ed54504be2c2ab8a83721748130780.tar.gz
- make this DROP conditional, attempting to isolate why jenkins has
an issue with just one test
-rw-r--r--test/dialect/mysql/test_reflection.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/dialect/mysql/test_reflection.py b/test/dialect/mysql/test_reflection.py
index 09499fae4..351eacea5 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()