aboutsummaryrefslogtreecommitdiffstats
path: root/library/python/testing/yatest_common/yatest/common/runtime.py
diff options
context:
space:
mode:
authorasatarin <asatarin@yandex-team.ru>2022-02-10 16:47:30 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:47:30 +0300
commit4ca29390ac54b7877174de542de47532c67453b5 (patch)
tree14f6fc2edf989ce65a7555e8882e3eae3e9306fe /library/python/testing/yatest_common/yatest/common/runtime.py
parent05f59b2581f074c756adaee6b260014ac3a0c3ec (diff)
downloadydb-4ca29390ac54b7877174de542de47532c67453b5.tar.gz
Restoring authorship annotation for <asatarin@yandex-team.ru>. Commit 1 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.py28
1 files changed, 14 insertions, 14 deletions
diff --git a/library/python/testing/yatest_common/yatest/common/runtime.py b/library/python/testing/yatest_common/yatest/common/runtime.py
index e55e193446..c827169f43 100644
--- a/library/python/testing/yatest_common/yatest/common/runtime.py
+++ b/library/python/testing/yatest_common/yatest/common/runtime.py
@@ -198,15 +198,15 @@ def get_param(key, default=None):
return _get_ya_plugin_instance().get_param(key, default)
-def get_param_dict_copy():
- """
- Return copy of dictionary with all parameters. Changes to this dictionary do *not* change parameters.
-
- :return: copy of dictionary with all parameters
- """
- return _get_ya_plugin_instance().get_param_dict_copy()
-
-
+def get_param_dict_copy():
+ """
+ Return copy of dictionary with all parameters. Changes to this dictionary do *not* change parameters.
+
+ :return: copy of dictionary with all parameters
+ """
+ return _get_ya_plugin_instance().get_param_dict_copy()
+
+
@not_test
def test_output_path(path=None):
"""
@@ -317,11 +317,11 @@ class Context(object):
@property
def sanitize(self):
- """
- Detect if current test run is under sanitizer
-
- :return: one of `None`, 'address', 'memory', 'thread', 'undefined'
- """
+ """
+ Detect if current test run is under sanitizer
+
+ :return: one of `None`, 'address', 'memory', 'thread', 'undefined'
+ """
return _get_ya_plugin_instance().get_context("sanitize")
@property