We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 554f77f commit a369f59Copy full SHA for a369f59
.github/workflows/tests.yml
@@ -18,15 +18,16 @@ jobs:
18
- name: Pause for stack to start
19
run: sleep 10
20
21
- - name: Show running containers
22
- run: docker ps -a
23
-
24
- name: Integration tests - API
25
run: docker run
26
--env CONF_DIR=/dp3/tests/test_config
27
--network container:dp3_api
28
dp3_interpreter python -m unittest discover -s tests/test_api -v
29
+ - name: Dump Logs on Failure
+ if: failure()
+ run: docker compose logs
30
+
31
- name: Check worker errors
32
run: docker compose logs worker | grep "WARNING\|ERROR\|exception" | grep -v "RabbitMQ\|it's\ OK\ now,\ we're\ successfully\ connected" || true
33
0 commit comments