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:
274
274
run : |
275
275
poetry run python tests/integration/integration_tests.py
276
276
277
- - name : Print the CodeGate container logs
277
+ - name : Logs - CodeGate container
278
278
if : always()
279
+ continue-on-error : true
279
280
run : |
280
281
docker logs $CODEGATE_CONTAINER_NAME
281
282
echo "Models contents:"
@@ -288,16 +289,19 @@ jobs:
288
289
ls -la codegate_volume/db
289
290
docker exec $CODEGATE_CONTAINER_NAME ls -la /app/codegate_volume/db
290
291
291
- - name : Print the vllm container logs (vllm-only)
292
+ - name : Logs - vllm container (vllm-only)
292
293
if : always()
294
+ continue-on-error : true
293
295
run : |
294
296
if ${{ matrix.test-provider == 'vllm' }}; then
295
297
docker logs vllm
296
298
else
297
299
echo "Skipping vllm logs, as this is not a VLLM test"
298
300
fi
299
- - name : Print the Ollama container logs (ollama-only)
301
+
302
+ - name : Logs - Ollama container (ollama-only)
300
303
if : always()
304
+ continue-on-error : true
301
305
run : |
302
306
if ${{ matrix.test-provider == 'ollama' }}; then
303
307
docker logs ollama
You can’t perform that action at this time.
0 commit comments