diff --git a/AgentQnA/tests/test_compose_on_gaudi.sh b/AgentQnA/tests/test_compose_on_gaudi.sh index 60b95f6ee..cf224b6aa 100644 --- a/AgentQnA/tests/test_compose_on_gaudi.sh +++ b/AgentQnA/tests/test_compose_on_gaudi.sh @@ -4,6 +4,9 @@ set -xe +echo "All running containers" +docker ps + WORKPATH=$(dirname "$PWD") export WORKDIR=$WORKPATH/../../ echo "WORKDIR=${WORKDIR}" @@ -40,6 +43,10 @@ function stop_llm(){ echo "Stopping container $cid" if [[ ! -z "$cid" ]]; then docker rm $cid -f && sleep 1s; fi + cid=$(docker ps -aq --filter "name=test-comps-vllm-gaudi-service") + echo "Stopping container $cid" + if [[ ! -z "$cid" ]]; then docker rm $cid -f && sleep 1s; fi + } function stop_retrieval_tool() {