We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8ca8af8 + 0261871 commit 5c2f4adCopy full SHA for 5c2f4ad
.github/workflows/unit_tests.yml
@@ -253,6 +253,8 @@ jobs:
253
IGNORE_PATTERNS+="|GC3Pie not available, skipping test"
254
IGNORE_PATTERNS+="|CryptographyDeprecationWarning: TripleDES has been moved"
255
IGNORE_PATTERNS+="|algorithms.TripleDES"
256
+ # ignore lines with only successful ('.') and skipped ('s') tests
257
+ IGNORE_PATTERNS+="|^[\.s]+$"
258
# '|| true' is needed to avoid that GitHub Actions stops the job on non-zero exit of grep (i.e. when there are no matches)
259
PRINTED_MSG=$(egrep -v "${IGNORE_PATTERNS}" test_framework_suite.log | grep '\.\n*[A-Za-z]' || true)
260
test "x$PRINTED_MSG" = "x" || (echo "ERROR: Found printed messages in output of test suite" && echo "${PRINTED_MSG}" && exit 1)
0 commit comments