Skip to content

Commit da653c9

Browse files
committed
.
1 parent 28271dc commit da653c9

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,17 @@ jobs:
7575
- name: Run integration tests
7676
run: uv run pytest tests/integration_tests -v --tb=short -x
7777

78+
- name: Show Docker container logs on failure
79+
if: failure()
80+
run: |
81+
echo "=== Docker containers ==="
82+
docker ps -a
83+
echo "=== Docker logs for all containers ==="
84+
for container in $(docker ps -aq); do
85+
echo "--- Logs for container $container ---"
86+
docker logs $container || true
87+
done
88+
7889
e2e-tests:
7990
name: E2E Tests
8091
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)