Skip to content

Commit 4265fdb

Browse files
committed
Rename stress test job and script for clarity; update artifact naming and logging paths accordingly.
Signed-off-by: Kobe Chen <[email protected]>
1 parent 3734898 commit 4265fdb

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/router-e2e-test.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -232,12 +232,12 @@ jobs:
232232

233233
# - run: echo "🍏 Static discovery e2e test job status is ${{ job.status }}."
234234

235-
stress-test:
235+
router-stress-test:
236236
runs-on: ubuntu-latest
237237
needs: e2e-test
238238
if: github.event.pull_request.draft == false
239239
env:
240-
LOG_DIR: /tmp/stress-test-${{ github.event.pull_request.number || 'main' }}
240+
LOG_DIR: /tmp/router-stress-test-${{ github.event.pull_request.number || 'main' }}
241241

242242
steps:
243243
- name: Check out repository code
@@ -264,8 +264,8 @@ jobs:
264264
VLLM_ROUTER_STRESS_TEST_MODE: true
265265
run: |
266266
echo "🧪 Running router stress test with mock backends"
267-
chmod +x tests/e2e/stress-test.sh
268-
./tests/e2e/stress-test.sh \
267+
chmod +x tests/e2e/router-stress-test.sh
268+
./tests/e2e/router-stress-test.sh \
269269
--concurrent 100 \
270270
--requests 1000 \
271271
--port 30080 \
@@ -275,11 +275,11 @@ jobs:
275275
--backend2-port 8001
276276
timeout-minutes: 2
277277

278-
- name: Archive stress test results and logs
278+
- name: Archive router stress test results and logs
279279
uses: actions/upload-artifact@v4
280280
if: always()
281281
with:
282-
name: stress-test-results-pr-${{ github.event.pull_request.number || 'main' }}
282+
name: router-stress-test-results-pr-${{ github.event.pull_request.number || 'main' }}
283283
path: |
284284
${{ env.LOG_DIR }}/*
285285
@@ -289,4 +289,4 @@ jobs:
289289
echo "🧹 Cleaning up router processes"
290290
pkill -f "python3 -m src.vllm_router.app" || true
291291
292-
- run: echo "🍏 Stress test job status is ${{ job.status }}."
292+
- run: echo "🍏 Router stress test job status is ${{ job.status }}."
File renamed without changes.

0 commit comments

Comments
 (0)