diff --git a/scripts/ct/run.sh b/scripts/ct/run.sh index ba0bbdda3..df5896d12 100755 --- a/scripts/ct/run.sh +++ b/scripts/ct/run.sh @@ -110,6 +110,10 @@ ERLANG_CONTAINER='erlang' DOCKER_CT_ENVS_FILE="${WHICH_APP}/docker-ct" case "${WHICH_APP}" in + # emqx_connector test suite is using kafka bridge which is only available in emqx-enterprise + apps/emqx_connector) + export PROFILE='emqx-enterprise' + ;; lib-ee*) ## ensure enterprise profile when testing lib-ee applications export PROFILE='emqx-enterprise' diff --git a/scripts/find-apps.sh b/scripts/find-apps.sh index aaee8adba..ed602b8af 100755 --- a/scripts/find-apps.sh +++ b/scripts/find-apps.sh @@ -80,7 +80,7 @@ describe_app() { runner="docker" fi case "${app}" in - # emqx_connector test suite is using kafka brdige which is only available in emqx-enterprise + # emqx_connector test suite is using kafka bridge which is only available in emqx-enterprise apps/emqx_connector) profile='emqx-enterprise' ;;