aboutsummaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorthegeorg <thegeorg@yandex-team.com>2023-03-27 13:49:01 +0300
committerthegeorg <thegeorg@yandex-team.com>2023-03-27 13:49:01 +0300
commitdaf5effa228ce7a23c42e7bb3377557e2ed678c3 (patch)
tree26f060ec127abe5ed08866edfaf324cbf79e86da /build
parentebea3630bb3cabb3f936b766830864a581bc65b9 (diff)
downloadydb-daf5effa228ce7a23c42e7bb3377557e2ed678c3.tar.gz
Forbid using GTEST_UGLY in mail
Diffstat (limited to 'build')
-rw-r--r--build/plugins/ytest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/plugins/ytest.py b/build/plugins/ytest.py
index 3b98011922..2505f17373 100644
--- a/build/plugins/ytest.py
+++ b/build/plugins/ytest.py
@@ -71,7 +71,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")):
+ if not project_path.startswith(("contrib", "devtools", "mds")):
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]))