Skip to content

Commit eab3a61

Browse files
committed
Check the absence of stack traces in log after API tests
1 parent 5acb8e3 commit eab3a61

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -183,10 +183,9 @@ jobs:
183183
source venv/bin/activate
184184
pip install -r requirements.txt
185185
PYTHONUNBUFFERED=true python -m unittest --verbose
186-
# TODO: put back, once all existing traces are figured out
187-
# - name: Check the absence of errors/stack traces in logs
188-
# run: |
189-
# docker compose logs app | grep Traceback -A100 && exit 1
186+
- name: Check the absence of errors/stack traces in logs
187+
run: |
188+
docker compose logs app | grep Traceback -A100 && exit 1
190189
- name: Stop development server
191190
if: ${{ always() }}
192191
run: |

0 commit comments

Comments
 (0)