Merge branch 'no-flaky-check' into fix-log-and-exception-messages-formatting

This commit is contained in:
Alexey Milovidov 2024-08-04 18:08:31 +02:00
commit 701db12687
2 changed files with 4 additions and 1 deletions

View File

@ -1232,6 +1232,9 @@ class TestCase:
):
return FailureReason.SKIP
elif "no-flaky-check" in tags and (args.test_runs > 1):
return FailureReason.SKIP
elif tags:
for build_flag in args.build_flags:
if "no-" + build_flag in tags:

View File

@ -1,4 +1,4 @@
-- Tags: no-parallel, no-fasttest, no-ubsan, no-batch
-- Tags: no-parallel, no-fasttest, no-ubsan, no-batch, no-flaky-check
-- no-parallel because we want to run this test when most of the other tests already passed
-- If this test fails, see the "Top patterns of log messages" diagnostics in the end of run.log