Skip to content

Commit 507a89e

Browse files
committed
run test
1 parent ef6c355 commit 507a89e

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/build-and-test-vllm.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@ jobs:
5151
./container/build.sh --tag ${{ steps.define_image_tag.outputs.image_tag }} --target runtime --framework vllm
5252
- name: Run pytest
5353
env:
54-
PYTEST_MARKS: "e2e and vllm and gpu_1"
54+
PYTEST_MARKS: "e2e and vllm and gpu_1 and serve"
5555
run: |
56-
docker run -v ${{ github.workspace }}:/workspace -w /workspace --name ${{ env.CONTAINER_ID }}_pytest ${{ steps.define_image_tag.outputs.image_tag }} bash -c "pytest --basetemp=/tmp --junitxml=${{ env.PYTEST_XML_FILE }} -m \"${{ env.PYTEST_MARKS }}\""
56+
docker run --gpus all-v ${{ github.workspace }}:/workspace -w /workspace --name ${{ env.CONTAINER_ID }}_pytest ${{ steps.define_image_tag.outputs.image_tag }} bash -c "pytest --basetemp=/tmp --junitxml=${{ env.PYTEST_XML_FILE }} -m \"${{ env.PYTEST_MARKS }}\""
5757
- name: Cleanup - Remove dynamo directory
5858
if: always()
5959
run: |

tests/serve/test_vllm.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -303,6 +303,7 @@ def vllm_config_test(request):
303303

304304
@pytest.mark.e2e
305305
@pytest.mark.slow
306+
@pytest.mark.serve
306307
def test_serve_deployment(vllm_config_test, request, runtime_services):
307308
"""
308309
Test dynamo serve deployments with different graph configurations.

0 commit comments

Comments
 (0)