Check for tests with "fail" in their names

This commit is contained in:
Alexey Milovidov 2020-06-20 09:28:19 +03:00
parent f27ae6a12a
commit dec883e21b
3 changed files with 3 additions and 0 deletions

View File

@ -59,3 +59,6 @@ find $ROOT_PATH/{src,base,programs,utils} -name '*.xml' | xargs xmllint --noout
# Machine translation to Russian is strictly prohibited
find $ROOT_PATH/docs/ru -name '*.md' | xargs grep -l -F 'machine_translated: true'
# Tests should not be named with "fail" in their names. It makes looking at the results less convenient.
find $ROOT_PATH/tests/queries -iname '*fail*' | grep . && echo 'Tests should not be named with "fail" in their names. It makes looking at the results less convenient when you search for "fail" substring in browser.'