bazel run gazelle

This commit is contained in:
GitHub 2025-02-14 04:02:28 +00:00
parent 13e24d3172
commit ed8001ab07
1 changed files with 8 additions and 0 deletions

View File

@ -136,3 +136,11 @@ def test_suite_beam_files(name = "test_suite_beam_files"):
app_name = "rabbitmq_auth_backend_cache", app_name = "rabbitmq_auth_backend_cache",
erlc_opts = "//:test_erlc_opts", erlc_opts = "//:test_erlc_opts",
) )
erlang_bytecode(
name = "rabbit_auth_clear_cache_command_SUITE_beam_files",
testonly = True,
srcs = ["test/rabbit_auth_clear_cache_command_SUITE.erl"],
outs = ["test/rabbit_auth_clear_cache_command_SUITE.beam"],
app_name = "rabbitmq_auth_backend_cache",
erlc_opts = "//:test_erlc_opts",
)