We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28271dc commit da653c9Copy full SHA for da653c9
1 file changed
.github/workflows/ci.yml
@@ -75,6 +75,17 @@ jobs:
75
- name: Run integration tests
76
run: uv run pytest tests/integration_tests -v --tb=short -x
77
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
+
89
e2e-tests:
90
name: E2E Tests
91
runs-on: ubuntu-latest
0 commit comments