fix(authz): don't stop emqx_resource app in test cases

This commit is contained in:
Shawn 2022-08-23 08:57:12 +08:00
parent 45352206a3
commit 1ff53ee8a9
5 changed files with 2 additions and 4 deletions

View File

@ -8,6 +8,7 @@
kernel,
stdlib,
crypto,
emqx_resource,
emqx_connector
]},
{env, []},

View File

@ -56,7 +56,6 @@ end_per_suite(_Config) ->
<<"sources">> => []
}
),
ok = stop_apps([emqx_resource]),
emqx_common_test_helpers:stop_apps([emqx_authz, emqx_conf]),
meck:unload(emqx_resource),
ok.

View File

@ -47,7 +47,6 @@ end_per_suite(_Config) ->
<<"sources">> => []
}
),
ok = stop_apps([emqx_resource]),
emqx_common_test_helpers:stop_apps([emqx_dashboard, emqx_authz, emqx_conf, emqx_management]),
ok.

View File

@ -55,7 +55,6 @@ init_per_suite(Config) ->
end_per_suite(_Config) ->
ok = emqx_authz_test_lib:restore_authorizers(),
ok = stop_apps([emqx_resource]),
ok = emqx_common_test_helpers:stop_apps([emqx_authz]).
init_per_testcase(_TestCase, Config) ->

View File

@ -1,7 +1,7 @@
%% -*- mode: erlang -*-
{application, emqx_plugin_libs, [
{description, "EMQX Plugin utility libs"},
{vsn, "4.3.2"},
{vsn, "4.3.3"},
{modules, []},
{applications, [kernel, stdlib]},
{env, []}