diff options
| author | mike bayer <mike_mp@zzzcomputing.com> | 2019-07-11 16:56:54 +0000 |
|---|---|---|
| committer | Gerrit Code Review <gerrit@bbpush.zzzcomputing.com> | 2019-07-11 16:56:54 +0000 |
| commit | 5c16367ee78fa1a41d6b715152dcc58f45323d2e (patch) | |
| tree | a35326b2adabeb3eccb3d007c4845d476ae557da /lib/sqlalchemy/testing/plugin/plugin_base.py | |
| parent | 3e77f419a141a09ed89b0b49ecde15db3e86c552 (diff) | |
| parent | 81b68ac3e491bfc57218c60d6f44a4ad8123279a (diff) | |
| download | sqlalchemy-5c16367ee78fa1a41d6b715152dcc58f45323d2e.tar.gz | |
Merge "profiling plugin fixes"
Diffstat (limited to 'lib/sqlalchemy/testing/plugin/plugin_base.py')
| -rw-r--r-- | lib/sqlalchemy/testing/plugin/plugin_base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/testing/plugin/plugin_base.py b/lib/sqlalchemy/testing/plugin/plugin_base.py index 8f79b4163..4593f1431 100644 --- a/lib/sqlalchemy/testing/plugin/plugin_base.py +++ b/lib/sqlalchemy/testing/plugin/plugin_base.py @@ -587,7 +587,7 @@ def before_test(test, test_module_name, test_class, test_name): id_ = "%s.%s.%s" % (test_module_name, name, test_name) - profiling._current_test = id_ + profiling._start_current_test(id_) def after_test(test): |
