diff options
author | v-korovin <v-korovin@yandex-team.ru> | 2022-02-10 16:46:21 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:46:21 +0300 |
commit | 637de640c39b46c13f29619057a54f4cf3e1241b (patch) | |
tree | 1a2c5ffcf89eb53ecd79dbc9bc0a195c27404d0c /build/plugins/ytest.py | |
parent | c4e0c5d2f245076d63ccff1004c755ca0cc5d27b (diff) | |
download | ydb-637de640c39b46c13f29619057a54f4cf3e1241b.tar.gz |
Restoring authorship annotation for <v-korovin@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'build/plugins/ytest.py')
-rw-r--r-- | build/plugins/ytest.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/build/plugins/ytest.py b/build/plugins/ytest.py index 7ebf5c86725..8970837f0f8 100644 --- a/build/plugins/ytest.py +++ b/build/plugins/ytest.py @@ -736,11 +736,11 @@ def onadd_pytest_bin(unit, *args): ) runner_bin = kws.get('RUNNER_BIN', [None])[0] - test_type = 'py3test.bin' if (unit.get("PYTHON3") == 'yes') else "pytest.bin" + test_type = 'py3test.bin' if (unit.get("PYTHON3") == 'yes') else "pytest.bin" + + add_test_to_dart(unit, test_type, runner_bin=runner_bin) - add_test_to_dart(unit, test_type, runner_bin=runner_bin) - def add_test_to_dart(unit, test_type, binary_path=None, runner_bin=None): if unit.get("TIDY") == "yes": # graph changed for clang_tidy tests @@ -1047,7 +1047,7 @@ def onsetup_run_python(unit): def get_canonical_test_resources(unit): unit_path = unit.path() - canon_data_dir = os.path.join(unit.resolve(unit_path), CANON_DATA_DIR_NAME, unit.get('CANONIZE_SUB_PATH') or '') + canon_data_dir = os.path.join(unit.resolve(unit_path), CANON_DATA_DIR_NAME, unit.get('CANONIZE_SUB_PATH') or '') try: _, dirs, files = next(os.walk(canon_data_dir)) |