summaryrefslogtreecommitdiff
path: root/tests/__init__.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2014-06-05 16:22:14 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2014-06-05 16:22:14 -0400
commit1f4d8c61033685d90c344c96222e2f8249ca68e8 (patch)
tree527f060c7b23227d157fbcafb5b6d5af1910bcd6 /tests/__init__.py
parent0a93da93d011118d9446e0ef7b4d5d80e550adfb (diff)
downloadalembic-1f4d8c61033685d90c344c96222e2f8249ca68e8.tar.gz
- Liberalized even more the check for MySQL indexes that shouldn't be
counted in autogenerate as "drops"; this time it's been reported that an implicitly created index might be named the same as a composite foreign key constraint, and not the actual columns, so we now skip those when detected as well. fixes #208
Diffstat (limited to 'tests/__init__.py')
-rw-r--r--tests/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/__init__.py b/tests/__init__.py
index cfb9098..85ea5b3 100644
--- a/tests/__init__.py
+++ b/tests/__init__.py
@@ -65,7 +65,7 @@ def db_for_dialect(name):
except configparser.NoOptionError:
raise SkipTest("No dialect %r in test.cfg" % name)
try:
- eng = create_engine(cfg)
+ eng = create_engine(cfg, echo='debug')
except ImportError as er1:
raise SkipTest("Can't import DBAPI: %s" % er1)
try: