test: hard code emqx-enterprise profile for emqx_connector in ct/run.sh

This commit is contained in:
Ivan Dyachkov 2023-10-25 18:37:05 +02:00 committed by Zaiming (Stone) Shi
parent 477ed11de8
commit 4e198567d6
2 changed files with 5 additions and 1 deletions

View File

@ -110,6 +110,10 @@ ERLANG_CONTAINER='erlang'
DOCKER_CT_ENVS_FILE="${WHICH_APP}/docker-ct" DOCKER_CT_ENVS_FILE="${WHICH_APP}/docker-ct"
case "${WHICH_APP}" in 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*) lib-ee*)
## ensure enterprise profile when testing lib-ee applications ## ensure enterprise profile when testing lib-ee applications
export PROFILE='emqx-enterprise' export PROFILE='emqx-enterprise'

View File

@ -80,7 +80,7 @@ describe_app() {
runner="docker" runner="docker"
fi fi
case "${app}" in 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) apps/emqx_connector)
profile='emqx-enterprise' profile='emqx-enterprise'
;; ;;