File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 51
51
./container/build.sh --tag ${{ steps.define_image_tag.outputs.image_tag }} --target runtime --framework vllm
52
52
- name : Run pytest
53
53
env :
54
- PYTEST_MARKS : " e2e and vllm and gpu_1"
54
+ PYTEST_MARKS : " e2e and vllm and gpu_1 and serve "
55
55
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 }}\""
57
57
- name : Cleanup - Remove dynamo directory
58
58
if : always()
59
59
run : |
Original file line number Diff line number Diff line change @@ -303,6 +303,7 @@ def vllm_config_test(request):
303
303
304
304
@pytest .mark .e2e
305
305
@pytest .mark .slow
306
+ @pytest .mark .serve
306
307
def test_serve_deployment (vllm_config_test , request , runtime_services ):
307
308
"""
308
309
Test dynamo serve deployments with different graph configurations.
You can’t perform that action at this time.
0 commit comments