Skip to content

Commit

Permalink
test/chore: Add STDOUT STDERR loguru log test
Browse files Browse the repository at this point in the history
  • Loading branch information
Constantin1489 committed Jan 15, 2024
1 parent 482b7e8 commit b78a11a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/test-only.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,10 @@ jobs:
curl -s -g -6 "http://[::1]:5556"|grep -q checkbox-uuid
# Check whether TRACE log is enabled.
docker logs test-changedetectionio 2>&1 | grep 'TRACE log is enabled' || exit 1
# Also, check whether TRACE is came from STDERR
docker logs test-changedetectionio 2>&1 1>/dev/null | grep 'TRACE log is enabled' || exit 1
# Check whether DEBUG is came from STDOUT
docker logs test-changedetectionio 2>/dev/null | grep 'DEBUG' || exit 1
docker kill test-changedetectionio
Expand Down

0 comments on commit b78a11a

Please sign in to comment.