File tree Expand file tree Collapse file tree 6 files changed +8
-8
lines changed Expand file tree Collapse file tree 6 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -23,4 +23,4 @@ docker exec cpu-test-avx2 bash -c "python3 examples/offline_inference.py"
23
23
docker exec cpu-test bash -c " cd tests;
24
24
pip install pytest Pillow protobuf
25
25
cd ../
26
- pytest -v -s tests/models -m \" not llava \" --ignore=tests/models/test_embedding.py --ignore=tests/models/test_registry.py"
26
+ pytest -v -s tests/models -m \" not vlm \" --ignore=tests/models/test_embedding.py --ignore=tests/models/test_registry.py"
Original file line number Diff line number Diff line change @@ -100,13 +100,13 @@ steps:
100
100
- label : Models Test
101
101
# mirror_hardwares: [amd]
102
102
commands :
103
- - pytest -v -s models -m \"not llava \"
103
+ - pytest -v -s models -m \"not vlm \"
104
104
105
- - label : Llava Test
105
+ - label : Vision Language Models Test
106
106
mirror_hardwares : [amd]
107
107
commands :
108
108
- bash ../.buildkite/download-images.sh
109
- - pytest -v -s models -m llava
109
+ - pytest -v -s models -m vlm
110
110
111
111
- label : Prefix Caching Test
112
112
mirror_hardwares : [amd]
Original file line number Diff line number Diff line change @@ -71,5 +71,5 @@ markers = [
71
71
" skip_global_cleanup" ,
72
72
" llm: run tests for vLLM API only" ,
73
73
" openai: run tests for OpenAI API only" ,
74
- " llava : run tests for LLaVA models only" ,
74
+ " vlm : run tests for vision language models only" ,
75
75
]
Original file line number Diff line number Diff line change 7
7
8
8
from ..conftest import IMAGE_FILES
9
9
10
- pytestmark = pytest .mark .llava
10
+ pytestmark = pytest .mark .vlm
11
11
12
12
# The image token is placed before "user" on purpose so that the test can pass
13
13
HF_IMAGE_PROMPTS = [
Original file line number Diff line number Diff line change 7
7
8
8
from ..conftest import IMAGE_FILES
9
9
10
- pytestmark = pytest .mark .llava
10
+ pytestmark = pytest .mark .vlm
11
11
12
12
_PREFACE = (
13
13
"A chat between a curious human and an artificial intelligence assistant. "
Original file line number Diff line number Diff line change 8
8
9
9
from ..conftest import IMAGE_FILES
10
10
11
- pytestmark = pytest .mark .llava
11
+ pytestmark = pytest .mark .vlm
12
12
13
13
# The image token is placed before "user" on purpose so that the test can pass
14
14
HF_IMAGE_PROMPTS = [
You can’t perform that action at this time.
0 commit comments