File tree Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change 15
15
16
16
name : NVIDIA Github Validation - vLLM
17
17
18
+ # Do not cancel merges into main
19
+ concurrency :
20
+ group : pr-build-test-vllm-${{ github.event.number || github.run_id }}
21
+ cancel-in-progress : ${{ github.ref_name != 'main' }}
22
+
18
23
on :
19
24
push :
20
25
branches :
23
28
24
29
jobs :
25
30
build-test :
26
- runs-on :
27
- group : GPU_runners
31
+ runs-on : gpu-l40-runners
28
32
name : Build and Test - vLLM
29
33
env :
30
34
CONTAINER_ID : test_${{ github.run_id }}_${{ github.run_attempt }}_${{ github.job }}_vllm
51
55
./container/build.sh --tag ${{ steps.define_image_tag.outputs.image_tag }} --target runtime --framework vllm
52
56
- name : Run pytest
53
57
env :
54
- PYTEST_MARKS : " e2e and vllm and gpu_1 and serve "
58
+ PYTEST_MARKS : " e2e and vllm and gpu_1 and not slow "
55
59
run : |
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 }}\""
60
+ 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
61
- name : Cleanup - Remove dynamo directory
58
62
if : always()
59
63
run : |
Original file line number Diff line number Diff line change @@ -302,8 +302,6 @@ def vllm_config_test(request):
302
302
303
303
304
304
@pytest .mark .e2e
305
- @pytest .mark .slow
306
- @pytest .mark .serve
307
305
def test_serve_deployment (vllm_config_test , request , runtime_services ):
308
306
"""
309
307
Test dynamo serve deployments with different graph configurations.
You can’t perform that action at this time.
0 commit comments