summaryrefslogtreecommitdiff
path: root/tests/__init__.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2012-09-30 14:57:11 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2012-09-30 14:57:11 -0400
commita654c35bd810f416d393b7102118b85cec787b1a (patch)
treed296b803d8925e0e5b666bd549420930cf8b6f5b /tests/__init__.py
parentbc0190827c460ae64fe9fb9efa271501207ca9ae (diff)
downloadalembic-a654c35bd810f416d393b7102118b85cec787b1a.tar.gz
- [feature] Support for tables in alternate schemas
has been added fully to all operations, as well as to the autogenerate feature. When using autogenerate, specifying the flag include_schemas=True to Environment.configure() will also cause autogenerate to scan all schemas located by Inspector.get_schema_names(), which is supported by *some* (but not all) SQLAlchemy dialects including Postgresql. *Enormous* thanks to Bruno Binet for a huge effort in implementing as well as writing tests. #33.
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 1456806..2b12836 100644
--- a/tests/__init__.py
+++ b/tests/__init__.py
@@ -52,7 +52,7 @@ def db_for_dialect(name):
except ConfigParser.NoOptionError:
raise SkipTest("No dialect %r in test.cfg" % name)
try:
- eng = create_engine(cfg, echo=True)
+ eng = create_engine(cfg) #, echo=True)
except ImportError, er1:
raise SkipTest("Can't import DBAPI: %s" % er1)
try: