File tree Expand file tree Collapse file tree 3 files changed +3
-18
lines changed Expand file tree Collapse file tree 3 files changed +3
-18
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ defaults:
3232
3333jobs :
3434 test :
35- if : ${{ github.event.label.name == 'module:pd' }}
35+ if : github.event_name == 'schedule' || github.event.label.name == 'module:pd'
3636 strategy :
3737 matrix :
3838 vllm_verison : [v0.8.5.post1]
9696 pip install -v -e .
9797
9898 - name : Run vllm-project/vllm-ascend PD Disaggregation test
99- if : github.event_name == 'schedule' || github.event.label.name == 'module:pd'
10099 run : |
101100 pytest -sv tests/e2e/pd_disaggreate/test_pd_e2e.py
Original file line number Diff line number Diff line change 1717# This file is a part of the vllm-ascend project.
1818#
1919
20-
21- function cleanup_instances() {
22- VLLM_PID=$( pgrep -f " vllm serve" )
23- _info " ===> Try kill -2 ${VLLM_PID} to exit."
24- kill -2 " $VLLM_PID "
25- wait_for_exit " $VLLM_PID "
26- }
27-
28-
2920function run_prefill_instance() {
3021 local model_name=$1
3122 local tp_size=$2
@@ -140,7 +131,4 @@ function run_proxy_server() {
140131 # Start the proxy server
141132 echo " Starting proxy server with command: $PROXY_CMD "
142133 $PROXY_CMD &
143-
144- # Wait for the proxy to start
145- sleep 3
146134}
Original file line number Diff line number Diff line change 1- #! /bin/bash
2-
31#
42# Copyright (c) 2025 Huawei Technologies Co., Ltd. All Rights Reserved.
53#
@@ -75,8 +73,8 @@ def start_and_test_pipeline():
7573 proc = subprocess .Popen (["bash" , SCRIPT_PATH ])
7674 try :
7775 print ("Waiting for proxy port to be available..." )
78- wait_for_port(PROXY_PORT, 1200 )
79- wait_for_port(DECODE_PORT, 1200 )
76+ wait_for_port (PROXY_PORT , 180 )
77+ wait_for_port (DECODE_PORT , 180 )
8078
8179 # request
8280 payload = {
You can’t perform that action at this time.
0 commit comments