Skip to content
This repository was archived by the owner on Jun 5, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -274,8 +274,9 @@ jobs:
run: |
poetry run python tests/integration/integration_tests.py

- name: Print the CodeGate container logs
- name: Logs - CodeGate container
if: always()
continue-on-error: true
run: |
docker logs $CODEGATE_CONTAINER_NAME
echo "Models contents:"
Expand All @@ -288,16 +289,19 @@ jobs:
ls -la codegate_volume/db
docker exec $CODEGATE_CONTAINER_NAME ls -la /app/codegate_volume/db

- name: Print the vllm container logs (vllm-only)
- name: Logs - vllm container (vllm-only)
if: always()
continue-on-error: true
run: |
if ${{ matrix.test-provider == 'vllm' }}; then
docker logs vllm
else
echo "Skipping vllm logs, as this is not a VLLM test"
fi
- name: Print the Ollama container logs (ollama-only)

- name: Logs - Ollama container (ollama-only)
if: always()
continue-on-error: true
run: |
if ${{ matrix.test-provider == 'ollama' }}; then
docker logs ollama
Expand Down