Skip to content

Commit fab7efa

Browse files
committed
remove perf testing. only keep original compose.yaml testing
Signed-off-by: Tsai, Louie <louie.tsai@intel.com> Signed-off-by: Tsai, Louie <louie.tsai@intel.com>
1 parent 1dc2323 commit fab7efa

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

ChatQnA/docker_compose/intel/cpu/xeon/compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ services:
106106
HF_HUB_OFFLINE: ${HF_HUB_OFFLINE:-0}
107107
VLLM_CPU_KVCACHE_SPACE: 40
108108
healthcheck:
109-
test: ["CMD-SHELL", "curl -f http://vllm-service:80/health || exit 1"]
109+
test: ["CMD-SHELL", "curl -f http://$host_ip:9009/health || exit 1"]
110110
interval: 10s
111111
timeout: 10s
112112
retries: 100

ChatQnA/tests/test_compose_on_xeon.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ function start_services() {
4343
source set_env.sh
4444

4545
# Start Docker Containers
46-
docker compose -f compose.yaml -f compose.telemetry.yaml -f compose.perf.yaml up -d --quiet-pull > ${LOG_PATH}/start_services_with_compose.log
46+
docker compose -f compose.yaml -f compose.telemetry.yaml up -d --quiet-pull > ${LOG_PATH}/start_services_with_compose.log
4747
n=0
4848
until [[ "$n" -ge 100 ]]; do
4949
docker logs vllm-service > ${LOG_PATH}/vllm_service_start.log 2>&1
@@ -163,7 +163,7 @@ function validate_frontend() {
163163

164164
function stop_docker() {
165165
cd $WORKPATH/docker_compose/intel/cpu/xeon
166-
docker compose -f compose.yaml -f compose.telemetry.yaml -f compose.perf.yaml down
166+
docker compose -f compose.yaml -f compose.telemetry.yaml down
167167
}
168168

169169
function main() {

0 commit comments

Comments
 (0)