Skip to content

Commit 3d15af9

Browse files
committed
Mark additional suites as flaky in bazel
(cherry picked from commit c01019c)
1 parent 716a73b commit 3d15af9

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

deps/rabbit/BUILD.bazel

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -336,10 +336,15 @@ rabbitmq_integration_suite(
336336
PACKAGE,
337337
name = "cluster_rename_SUITE",
338338
size = "medium",
339-
groups = [
340-
"cluster_size_2",
341-
"cluster_size_3",
342-
],
339+
matrix = {
340+
"cluster_size_2": {
341+
"groups": ["cluster_size_2"],
342+
},
343+
"cluster_size_3": {
344+
"groups": ["cluster_size_3"],
345+
"flaky": True,
346+
},
347+
},
343348
)
344349

345350
rabbitmq_integration_suite(
@@ -397,6 +402,7 @@ rabbitmq_integration_suite(
397402
additional_beam = [
398403
":quorum_queue_utils",
399404
],
405+
flaky = True,
400406
)
401407

402408
rabbitmq_integration_suite(

0 commit comments

Comments
 (0)