We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 812bd33 commit c639bddCopy full SHA for c639bdd
.github/workflows/tests.yml
@@ -15,12 +15,18 @@ jobs:
15
- name: Setup running platform stack
16
run: docker compose up --build -d
17
18
+ - name: Pause for stack to start
19
+ run: sleep 10
20
+
21
- name: Integration tests - API
22
run: docker run
23
--env CONF_DIR=/dp3/tests/test_config
24
--network container:dp3_api
25
dp3_interpreter python -m unittest discover -s tests/test_api -v
26
27
+ - name: Check worker errors
28
+ run: docker compose logs worker | grep "WARNING\|ERROR\|exception" | grep -v "RabbitMQ\|it's\ OK\ now,\ we're\ successfully\ connected" || true
29
30
- name: Teardown platform stack
31
run: docker compose down
32
0 commit comments