test: hard code emqx-enterprise profile for emqx_connector in ct/run.sh
This commit is contained in:
parent
477ed11de8
commit
4e198567d6
|
@ -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'
|
||||
|
|
|
@ -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'
|
||||
;;
|
||||
|
|
Loading…
Reference in New Issue