Skip to content

Commit e424884

Browse files
authored
[BugFix][CPU] Fix CPU CI by ignore collecting test_pixtral (#19411)
Signed-off-by: jiang.li <jiang1.li@intel.com>
1 parent 467bef1 commit e424884

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.buildkite/scripts/hardware_ci/run-cpu-test.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,10 @@ function cpu_tests() {
4343
pytest -v -s tests/kernels/attention/test_mla_decode_cpu.py -m cpu_model
4444
pytest -v -s tests/models/language/generation -m cpu_model
4545
pytest -v -s tests/models/language/pooling -m cpu_model
46-
pytest -v -s tests/models/multimodal/generation --ignore=tests/models/multimodal/generation/test_mllama.py -m cpu_model"
46+
pytest -v -s tests/models/multimodal/generation \
47+
--ignore=tests/models/multimodal/generation/test_mllama.py \
48+
--ignore=tests/models/multimodal/generation/test_pixtral.py \
49+
-m cpu_model"
4750

4851
# Run compressed-tensor test
4952
docker exec cpu-test-"$NUMA_NODE" bash -c "

0 commit comments

Comments
 (0)