Skip to content

Commit 1055a0c

Browse files
committed
Negate the return code of grep
1 parent eab3a61 commit 1055a0c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ jobs:
185185
PYTHONUNBUFFERED=true python -m unittest --verbose
186186
- name: Check the absence of errors/stack traces in logs
187187
run: |
188-
docker compose logs app | grep Traceback -A100 && exit 1
188+
! docker compose logs app | grep Traceback -A100
189189
- name: Stop development server
190190
if: ${{ always() }}
191191
run: |

0 commit comments

Comments
 (0)