From bb596fcc3b7c188adb756b14563983bddc78e9d5 Mon Sep 17 00:00:00 2001 From: Vasily Shamporov Date: Fri, 24 Jan 2025 12:33:41 +0100 Subject: [PATCH] Extract cacheopt E2E tests into separate test matrix field --- .github/workflows/linux.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 6bfca03c55..af7076321b 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -269,9 +269,10 @@ jobs: test: - name: 'Whisper' cmd: 'tests/python_tests/test_whisper_pipeline.py tests/python_tests/test_whisper_pipeline_static.py' + - name: 'Cacheopt E2E' + cmd: 'tests/python_tests/test_kv_cache_eviction.py' - name: 'LLM & VLM' - cmd: 'tests/python_tests --ignore tests/python_tests/test_whisper_pipeline.py --ignore ./tests/python_tests/test_whisper_pipeline_static.py' - + cmd: 'tests/python_tests --ignore tests/python_tests/test_whisper_pipeline.py --ignore tests/python_tests/test_kv_cache_eviction.py tests/python_tests/test_whisper_pipeline_static.py' defaults: run: shell: bash