diff options
author | glebov-da <glebov-da@yandex-team.ru> | 2022-02-10 16:51:01 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:51:01 +0300 |
commit | 60538a0cdb819e5a2cfe6eedba278cfc693efbeb (patch) | |
tree | 5d5cb817648f650d76cf1076100726fd9b8448e8 /library/python/testing | |
parent | 3abdc72be9915fd7419fd20148412ecfe81013c3 (diff) | |
download | ydb-60538a0cdb819e5a2cfe6eedba278cfc693efbeb.tar.gz |
Restoring authorship annotation for <glebov-da@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'library/python/testing')
-rw-r--r-- | library/python/testing/yatest_common/ya.make | 12 | ||||
-rw-r--r-- | library/python/testing/yatest_common/yatest/common/process.py | 4 |
2 files changed, 8 insertions, 8 deletions
diff --git a/library/python/testing/yatest_common/ya.make b/library/python/testing/yatest_common/ya.make index 44b230bb6dd..5662db4c5d3 100644 --- a/library/python/testing/yatest_common/ya.make +++ b/library/python/testing/yatest_common/ya.make @@ -31,10 +31,10 @@ PEERDIR( library/python/fs ) -IF (NOT CATBOOST_OPENSOURCE) - PEERDIR( - library/python/coredump_filter - ) -ENDIF() - +IF (NOT CATBOOST_OPENSOURCE) + PEERDIR( + library/python/coredump_filter + ) +ENDIF() + END() diff --git a/library/python/testing/yatest_common/yatest/common/process.py b/library/python/testing/yatest_common/yatest/common/process.py index 3050151cf54..a8bcc21f518 100644 --- a/library/python/testing/yatest_common/yatest/common/process.py +++ b/library/python/testing/yatest_common/yatest/common/process.py @@ -707,9 +707,9 @@ def check_glibc_version(binary_path): def backtrace_to_html(bt_filename, output): try: - from library.python import coredump_filter + from library.python import coredump_filter with open(output, "wb") as afile: - coredump_filter.filter_stackdump(bt_filename, stream=afile) + coredump_filter.filter_stackdump(bt_filename, stream=afile) except ImportError as e: yatest_logger.debug("Failed to import coredump_filter: %s", e) with open(output, "wb") as afile: |