[CI/Build] Remove use of skip_v1 (#34699)

Signed-off-by: DarkLight1337 <tlleungac@connect.ust.hk>
This commit is contained in:
Cyrus Leung
2026-02-18 12:19:11 +08:00
committed by GitHub
parent cef65f0715
commit 30ebe0dc3c
6 changed files with 9 additions and 5 deletions

View File

@@ -55,9 +55,11 @@ steps:
grade: Blocking grade: Blocking
source_file_dependencies: source_file_dependencies:
- vllm/ - vllm/
- tests/detokenizer
- tests/multimodal - tests/multimodal
- tests/utils_ - tests/utils_
commands: commands:
- pytest -v -s detokenizer
- pytest -v -s -m 'not cpu_test' multimodal - pytest -v -s -m 'not cpu_test' multimodal
- pytest -v -s utils_ - pytest -v -s utils_
@@ -547,7 +549,7 @@ steps:
- tests/samplers - tests/samplers
- tests/conftest.py - tests/conftest.py
commands: commands:
- pytest -v -s -m 'not skip_v1' samplers - pytest -v -s -m samplers
- label: LoRA Test %N # 20min each - label: LoRA Test %N # 20min each
timeout_in_minutes: 30 timeout_in_minutes: 30
@@ -2213,7 +2215,7 @@ steps:
- tests/samplers - tests/samplers
- tests/conftest.py - tests/conftest.py
commands: commands:
- pytest -v -s -m 'not skip_v1' samplers - pytest -v -s -m samplers
- label: LoRA Test %N # 20min each - label: LoRA Test %N # 20min each
timeout_in_minutes: 30 timeout_in_minutes: 30

View File

@@ -51,9 +51,11 @@ steps:
mirror_hardwares: [amdexperimental] mirror_hardwares: [amdexperimental]
source_file_dependencies: source_file_dependencies:
- vllm/ - vllm/
- tests/detokenizer
- tests/multimodal - tests/multimodal
- tests/utils_ - tests/utils_
commands: commands:
- pytest -v -s detokenizer
- pytest -v -s -m 'not cpu_test' multimodal - pytest -v -s -m 'not cpu_test' multimodal
- pytest -v -s utils_ - pytest -v -s utils_

View File

@@ -108,9 +108,11 @@ steps:
timeout_in_minutes: 50 timeout_in_minutes: 50
source_file_dependencies: source_file_dependencies:
- vllm/ - vllm/
- tests/detokenizer
- tests/multimodal - tests/multimodal
- tests/utils_ - tests/utils_
commands: commands:
- pytest -v -s detokenizer
- pytest -v -s -m 'not cpu_test' multimodal - pytest -v -s -m 'not cpu_test' multimodal
- pytest -v -s utils_ - pytest -v -s utils_

View File

@@ -18,4 +18,4 @@ steps:
depends_on: depends_on:
- image-build-amd - image-build-amd
commands: commands:
- pytest -v -s -m 'not skip_v1' samplers - pytest -v -s -m samplers

View File

@@ -113,7 +113,6 @@ markers = [
"cpu_test: mark test as CPU-only test", "cpu_test: mark test as CPU-only test",
"split: run this test as part of a split", "split: run this test as part of a split",
"distributed: run this test only in distributed GPU tests", "distributed: run this test only in distributed GPU tests",
"skip_v1: do not run this test with v1",
"optional: optional tests that are automatically skipped, include --optional to run them", "optional: optional tests that are automatically skipped, include --optional to run them",
] ]

View File

@@ -7,7 +7,6 @@ from vllm.entrypoints.llm import LLM
from vllm.sampling_params import SamplingParams from vllm.sampling_params import SamplingParams
@pytest.mark.skip_v1
@pytest.mark.parametrize("model", ["distilbert/distilgpt2"]) @pytest.mark.parametrize("model", ["distilbert/distilgpt2"])
def test_computed_prefix_blocks(model: str): def test_computed_prefix_blocks(model: str):
# This test checks if the engine generates completions both with and # This test checks if the engine generates completions both with and