diff options
author | bugaevskiy <bugaevskiy@yandex-team.ru> | 2022-02-10 16:46:17 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:46:17 +0300 |
commit | c7f68570483e493f4ddaf946de7b3a420ee621b0 (patch) | |
tree | 9c0071ecb0669ad439755fd802425230a52673ce /build/plugins/ytest.py | |
parent | 1312621288956f199a5bd5342b0133d4395fa725 (diff) | |
download | ydb-c7f68570483e493f4ddaf946de7b3a420ee621b0.tar.gz |
Restoring authorship annotation for <bugaevskiy@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'build/plugins/ytest.py')
-rw-r--r-- | build/plugins/ytest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/plugins/ytest.py b/build/plugins/ytest.py index 8970837f0f..8aae1d5f03 100644 --- a/build/plugins/ytest.py +++ b/build/plugins/ytest.py @@ -135,7 +135,7 @@ def validate_test(unit, kw): errors.append("BOOSTTEST is not allowed here") elif valid_kw.get('SCRIPT-REL-PATH') == 'gtest': project_path = valid_kw.get('BUILD-FOLDER-PATH', "") - if not project_path.startswith(("contrib", "devtools", "mail", "mds", "taxi")): + if not project_path.startswith(("contrib", "devtools", "mail", "mds", "taxi")): errors.append("GTEST_UGLY is not allowed here, use GTEST instead") size_timeout = collections.OrderedDict(sorted(consts.TestSize.DefaultTimeouts.items(), key=lambda t: t[1])) |