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:
32
32
33
33
jobs :
34
34
test :
35
- if : ${{ github.event.label.name == 'module:pd' }}
35
+ if : github.event_name == 'schedule' || github.event.label.name == 'module:pd'
36
36
strategy :
37
37
matrix :
38
38
vllm_verison : [v0.8.5.post1]
96
96
pip install -v -e .
97
97
98
98
- name : Run vllm-project/vllm-ascend PD Disaggregation test
99
- if : github.event_name == 'schedule' || github.event.label.name == 'module:pd'
100
99
run : |
101
100
pytest -sv tests/e2e/pd_disaggreate/test_pd_e2e.py
Original file line number Diff line number Diff line change 17
17
# This file is a part of the vllm-ascend project.
18
18
#
19
19
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
-
29
20
function run_prefill_instance() {
30
21
local model_name=$1
31
22
local tp_size=$2
@@ -140,7 +131,4 @@ function run_proxy_server() {
140
131
# Start the proxy server
141
132
echo " Starting proxy server with command: $PROXY_CMD "
142
133
$PROXY_CMD &
143
-
144
- # Wait for the proxy to start
145
- sleep 3
146
134
}
Original file line number Diff line number Diff line change 1
- #! /bin/bash
2
-
3
1
#
4
2
# Copyright (c) 2025 Huawei Technologies Co., Ltd. All Rights Reserved.
5
3
#
@@ -75,8 +73,8 @@ def start_and_test_pipeline():
75
73
proc = subprocess .Popen (["bash" , SCRIPT_PATH ])
76
74
try :
77
75
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 )
80
78
81
79
# request
82
80
payload = {
You can’t perform that action at this time.
0 commit comments