Skip to content

Commit 8969e98

Browse files
committed
bazel: Comment out assert_suites checks for apps with missing suites
`rabbitmq_management` is missing one suite definition and `rabbit_mqtt` is missing two. `assert_suites` causes a build failure because of the missing suites. This change comments out `assert_suites` for these apps instead of adding the missing suite definitions because Bazel is no longer used to test these apps.
1 parent 61a38d9 commit 8969e98

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

deps/rabbitmq_management/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ rabbitmq_suite(
232232
],
233233
)
234234

235-
assert_suites()
235+
# assert_suites()
236236

237237
alias(
238238
name = "rabbitmq_management",

deps/rabbitmq_mqtt/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ rabbitmq_suite(
301301
],
302302
)
303303

304-
assert_suites()
304+
# assert_suites()
305305

306306
alias(
307307
name = "rabbitmq_mqtt",

0 commit comments

Comments
 (0)