@@ -2,7 +2,16 @@ load("@rules_erlang//:xref2.bzl", "xref")
22load ("@rules_erlang//:dialyze.bzl" , "dialyze" , "plt" )
33load ("@rules_erlang//:eunit2.bzl" , "eunit" )
44load (":app.bzl" , "all_beam_files" , "all_srcs" , "all_test_beam_files" , "test_suite_beam_files" )
5- load ("//:rabbitmq.bzl" , "assert_suites" , "rabbitmq_app" )
5+ load (
6+ "//:rabbitmq.bzl" ,
7+ "BROKER_VERSION_REQUIREMENTS_ANY" ,
8+ "RABBITMQ_DIALYZER_OPTS" ,
9+ "assert_suites" ,
10+ "broker_for_integration_suites" ,
11+ "rabbitmq_app" ,
12+ "rabbitmq_integration_suite" ,
13+ "rabbitmq_suite" ,
14+ )
615
716all_srcs (name = "all_srcs" )
817
@@ -17,6 +26,8 @@ rabbitmq_app(
1726 srcs = [":all_srcs" ],
1827 hdrs = [":public_hdrs" ],
1928 app_name = "rabbitmq_local_exchange" ,
29+ app_description = "Local Exchange type" ,
30+ app_extra_keys = BROKER_VERSION_REQUIREMENTS_ANY ,
2031 beam_files = [":beam_files" ],
2132 license_files = [":license_files" ],
2233 priv = [":priv" ],
@@ -54,4 +65,10 @@ eunit(
5465 target = ":test_erlang_app" ,
5566)
5667
68+ broker_for_integration_suites ()
69+
70+ rabbitmq_integration_suite (
71+ name = "rabbit_local_exchange_SUITE"
72+ )
73+
5774assert_suites ()
0 commit comments