Lines Matching full:flaky
50 ["bazel", "query", "attr(flaky, 1, tests({}/...))".format(test_dir)]
64 continue # we know mac stuff is flaky
71 print("will mark end2end test {} as flaky".format(row.test_binary))
75 print("will mark {} as flaky".format(row.test_binary))
79 for test, flaky in sorted(tests.items()):
80 if flaky:
81 buildozer_commands.append("set flaky True|{}".format(test))
83 buildozer_commands.append("remove flaky|{}".format(test))
85 with open("test/core/end2end/flaky.bzl", "w") as f:
100 '"""A list of flaky tests, consumed by generate_tests.bzl to set'
101 ' flaky attrs."""'