summaryrefslogtreecommitdiff
path: root/tests/__init__.py
diff options
context:
space:
mode:
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: