diff options
author | dvshkurko <dvshkurko@yandex-team.ru> | 2022-02-10 16:45:52 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:45:52 +0300 |
commit | c768a99151e47c3a4bb7b92c514d256abd301c4d (patch) | |
tree | 1a2c5ffcf89eb53ecd79dbc9bc0a195c27404d0c /library/python/testing/yatest_common/yatest/common/runtime.py | |
parent | 321ee9bce31ec6e238be26dbcbe539cffa2c3309 (diff) | |
download | ydb-c768a99151e47c3a4bb7b92c514d256abd301c4d.tar.gz |
Restoring authorship annotation for <dvshkurko@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'library/python/testing/yatest_common/yatest/common/runtime.py')
-rw-r--r-- | library/python/testing/yatest_common/yatest/common/runtime.py | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/library/python/testing/yatest_common/yatest/common/runtime.py b/library/python/testing/yatest_common/yatest/common/runtime.py index 95d96b468a..e55e193446 100644 --- a/library/python/testing/yatest_common/yatest/common/runtime.py +++ b/library/python/testing/yatest_common/yatest/common/runtime.py @@ -2,14 +2,14 @@ import errno import functools import json import os -import threading +import threading import six -_lock = threading.Lock() - - +_lock = threading.Lock() + + def _get_ya_config(): try: import library.python.pytest.plugins.ya as ya_plugin @@ -263,13 +263,13 @@ def global_resources(): def _register_core(name, binary_path, core_path, bt_path, pbt_path): config = _get_ya_config() - - with _lock: + + with _lock: if not hasattr(config, 'test_cores_count'): config.test_cores_count = 0 - config.test_cores_count += 1 - count_str = '' if config.test_cores_count == 1 else str(config.test_cores_count) - + config.test_cores_count += 1 + count_str = '' if config.test_cores_count == 1 else str(config.test_cores_count) + log_entry = config.test_logs[config.current_item_nodeid] if binary_path: log_entry['{} binary{}'.format(name, count_str)] = binary_path |