summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/testing/config.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2014-07-27 18:46:20 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2014-07-27 18:46:20 -0400
commit54592942c4a9c3d6d891519082555f8081026445 (patch)
tree29abeff4dee0960284e03558ff464ffbf41cc784 /lib/sqlalchemy/testing/config.py
parent35551841c522d8eb20f8e20243a5510de9d95dfc (diff)
downloadsqlalchemy-54592942c4a9c3d6d891519082555f8081026445.tar.gz
- add support for tags, including include/exclude support.
simplify tox again now that we can exclude tests more easily
Diffstat (limited to 'lib/sqlalchemy/testing/config.py')
-rw-r--r--lib/sqlalchemy/testing/config.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/sqlalchemy/testing/config.py b/lib/sqlalchemy/testing/config.py
index b24483bb7..6832eab74 100644
--- a/lib/sqlalchemy/testing/config.py
+++ b/lib/sqlalchemy/testing/config.py
@@ -45,9 +45,10 @@ class Config(object):
@classmethod
def set_as_current(cls, config, namespace):
- global db, _current, db_url, test_schema, test_schema_2
+ global db, _current, db_url, test_schema, test_schema_2, db_opts
_current = config
db_url = config.db.url
+ db_opts = config.db_opts
test_schema = config.test_schema
test_schema_2 = config.test_schema_2
namespace.db = db = config.db