This repository was archived by the owner on Jun 5, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed
Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -274,8 +274,9 @@ jobs:
274274 run : |
275275 poetry run python tests/integration/integration_tests.py
276276
277- - name : Print the CodeGate container logs
277+ - name : Logs - CodeGate container
278278 if : always()
279+ continue-on-error : true
279280 run : |
280281 docker logs $CODEGATE_CONTAINER_NAME
281282 echo "Models contents:"
@@ -288,16 +289,19 @@ jobs:
288289 ls -la codegate_volume/db
289290 docker exec $CODEGATE_CONTAINER_NAME ls -la /app/codegate_volume/db
290291
291- - name : Print the vllm container logs (vllm-only)
292+ - name : Logs - vllm container (vllm-only)
292293 if : always()
294+ continue-on-error : true
293295 run : |
294296 if ${{ matrix.test-provider == 'vllm' }}; then
295297 docker logs vllm
296298 else
297299 echo "Skipping vllm logs, as this is not a VLLM test"
298300 fi
299- - name : Print the Ollama container logs (ollama-only)
301+
302+ - name : Logs - Ollama container (ollama-only)
300303 if : always()
304+ continue-on-error : true
301305 run : |
302306 if ${{ matrix.test-provider == 'ollama' }}; then
303307 docker logs ollama
You can’t perform that action at this time.
0 commit comments