diff options
| author | mike bayer <mike_mp@zzzcomputing.com> | 2020-08-14 00:08:29 +0000 |
|---|---|---|
| committer | Gerrit Code Review <gerrit@bbpush.zzzcomputing.com> | 2020-08-14 00:08:29 +0000 |
| commit | 9ccf4a2f659d77c7f1aacaa4ff2b3b16889fea5e (patch) | |
| tree | c30594326d1fb4b70b239c0865f1b7e627e63cc3 /lib/sqlalchemy/testing/plugin/plugin_base.py | |
| parent | b1c3c40e54bafe686065827d5b8d92c35bc50648 (diff) | |
| parent | 5fb0138a3220161703e6ab1087319a669d14e7f4 (diff) | |
| download | sqlalchemy-9ccf4a2f659d77c7f1aacaa4ff2b3b16889fea5e.tar.gz | |
Merge "Implement rudimentary asyncio support w/ asyncpg"
Diffstat (limited to 'lib/sqlalchemy/testing/plugin/plugin_base.py')
| -rw-r--r-- | lib/sqlalchemy/testing/plugin/plugin_base.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/sqlalchemy/testing/plugin/plugin_base.py b/lib/sqlalchemy/testing/plugin/plugin_base.py index b31a4ff3e..49ff0f975 100644 --- a/lib/sqlalchemy/testing/plugin/plugin_base.py +++ b/lib/sqlalchemy/testing/plugin/plugin_base.py @@ -48,7 +48,6 @@ testing = None util = None file_config = None - logging = None include_tags = set() exclude_tags = set() @@ -193,6 +192,12 @@ def setup_options(make_option): default=False, help="Unconditionally write/update profiling data.", ) + make_option( + "--dump-pyannotate", + type=str, + dest="dump_pyannotate", + help="Run pyannotate and dump json info to given file", + ) def configure_follower(follower_ident): @@ -378,7 +383,6 @@ def _engine_uri(options, file_config): cfg = provision.setup_config( db_url, options, file_config, provision.FOLLOWER_IDENT ) - if not config._current: cfg.set_as_current(cfg, testing) |
