test(mgmt): Disable certain tests on OSS
This commit is contained in:
parent
8c1302f455
commit
268f887700
|
@ -5,7 +5,6 @@
|
|||
-module(emqx_enterprise_schema).
|
||||
|
||||
-behaviour(hocon_schema).
|
||||
-behaviour(emqx_schema_hooks).
|
||||
|
||||
-include_lib("typerefl/include/types.hrl").
|
||||
-include_lib("hocon/include/hoconsc.hrl").
|
||||
|
|
|
@ -24,7 +24,12 @@
|
|||
-define(APPS, [emqx_conf, emqx_management]).
|
||||
|
||||
all() ->
|
||||
emqx_common_test_helpers:all(?MODULE).
|
||||
case emqx_cth_suite:skip_if_oss() of
|
||||
false ->
|
||||
emqx_common_test_helpers:all(?MODULE);
|
||||
True ->
|
||||
True
|
||||
end.
|
||||
|
||||
init_per_suite(Config) ->
|
||||
Config.
|
||||
|
|
|
@ -36,7 +36,12 @@
|
|||
).
|
||||
|
||||
all() ->
|
||||
emqx_common_test_helpers:all(?MODULE).
|
||||
case emqx_cth_suite:skip_if_oss() of
|
||||
false ->
|
||||
emqx_common_test_helpers:all(?MODULE);
|
||||
True ->
|
||||
True
|
||||
end.
|
||||
|
||||
init_per_suite(Config) ->
|
||||
Config.
|
||||
|
|
|
@ -52,7 +52,12 @@
|
|||
>>).
|
||||
|
||||
all() ->
|
||||
emqx_common_test_helpers:all(?MODULE).
|
||||
case emqx_cth_suite:skip_if_oss() of
|
||||
false ->
|
||||
emqx_common_test_helpers:all(?MODULE);
|
||||
True ->
|
||||
True
|
||||
end.
|
||||
|
||||
init_per_suite(Config) ->
|
||||
Config.
|
||||
|
|
Loading…
Reference in New Issue