Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
vllm_cscc
Commits
30ebe0dc
Unverified
Commit
30ebe0dc
authored
Feb 18, 2026
by
Cyrus Leung
Committed by
GitHub
Feb 18, 2026
Browse files
[CI/Build] Remove use of `skip_v1` (#34699)
Signed-off-by:
DarkLight1337
<
tlleungac@connect.ust.hk
>
parent
cef65f07
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
9 additions
and
5 deletions
+9
-5
.buildkite/test-amd.yaml
.buildkite/test-amd.yaml
+4
-2
.buildkite/test-pipeline.yaml
.buildkite/test-pipeline.yaml
+2
-0
.buildkite/test_areas/misc.yaml
.buildkite/test_areas/misc.yaml
+2
-0
.buildkite/test_areas/samplers.yaml
.buildkite/test_areas/samplers.yaml
+1
-1
pyproject.toml
pyproject.toml
+0
-1
tests/detokenizer/test_disable_detokenization.py
tests/detokenizer/test_disable_detokenization.py
+0
-1
No files found.
.buildkite/test-amd.yaml
View file @
30ebe0dc
...
...
@@ -55,9 +55,11 @@ steps:
grade
:
Blocking
source_file_dependencies
:
-
vllm/
-
tests/detokenizer
-
tests/multimodal
-
tests/utils_
commands
:
-
pytest -v -s detokenizer
-
pytest -v -s -m 'not cpu_test' multimodal
-
pytest -v -s utils_
...
...
@@ -547,7 +549,7 @@ steps:
-
tests/samplers
-
tests/conftest.py
commands
:
-
pytest -v -s -m
'not skip_v1'
samplers
-
pytest -v -s -m samplers
-
label
:
LoRA Test %N
# 20min each
timeout_in_minutes
:
30
...
...
@@ -2213,7 +2215,7 @@ steps:
-
tests/samplers
-
tests/conftest.py
commands
:
-
pytest -v -s -m
'not skip_v1'
samplers
-
pytest -v -s -m samplers
-
label
:
LoRA Test %N
# 20min each
timeout_in_minutes
:
30
...
...
.buildkite/test-pipeline.yaml
View file @
30ebe0dc
...
...
@@ -51,9 +51,11 @@ steps:
mirror_hardwares
:
[
amdexperimental
]
source_file_dependencies
:
-
vllm/
-
tests/detokenizer
-
tests/multimodal
-
tests/utils_
commands
:
-
pytest -v -s detokenizer
-
pytest -v -s -m 'not cpu_test' multimodal
-
pytest -v -s utils_
...
...
.buildkite/test_areas/misc.yaml
View file @
30ebe0dc
...
...
@@ -108,9 +108,11 @@ steps:
timeout_in_minutes
:
50
source_file_dependencies
:
-
vllm/
-
tests/detokenizer
-
tests/multimodal
-
tests/utils_
commands
:
-
pytest -v -s detokenizer
-
pytest -v -s -m 'not cpu_test' multimodal
-
pytest -v -s utils_
...
...
.buildkite/test_areas/samplers.yaml
View file @
30ebe0dc
...
...
@@ -18,4 +18,4 @@ steps:
depends_on
:
-
image-build-amd
commands
:
-
pytest -v -s -m
'not skip_v1'
samplers
-
pytest -v -s -m samplers
pyproject.toml
View file @
30ebe0dc
...
...
@@ -113,7 +113,6 @@ markers = [
"cpu_test: mark test as CPU-only test"
,
"split: run this test as part of a split"
,
"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"
,
]
...
...
tests/detokenizer/test_disable_detokenization.py
View file @
30ebe0dc
...
...
@@ -7,7 +7,6 @@ from vllm.entrypoints.llm import LLM
from
vllm.sampling_params
import
SamplingParams
@
pytest
.
mark
.
skip_v1
@
pytest
.
mark
.
parametrize
(
"model"
,
[
"distilbert/distilgpt2"
])
def
test_computed_prefix_blocks
(
model
:
str
):
# This test checks if the engine generates completions both with and
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment