Skip to content

Commit 5c2f4ad

Browse files
authored
Merge pull request #5082 from boegel/ignore_skipped_tests
2 parents 8ca8af8 + 0261871 commit 5c2f4ad

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/unit_tests.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -253,6 +253,8 @@ jobs:
253253
IGNORE_PATTERNS+="|GC3Pie not available, skipping test"
254254
IGNORE_PATTERNS+="|CryptographyDeprecationWarning: TripleDES has been moved"
255255
IGNORE_PATTERNS+="|algorithms.TripleDES"
256+
# ignore lines with only successful ('.') and skipped ('s') tests
257+
IGNORE_PATTERNS+="|^[\.s]+$"
256258
# '|| true' is needed to avoid that GitHub Actions stops the job on non-zero exit of grep (i.e. when there are no matches)
257259
PRINTED_MSG=$(egrep -v "${IGNORE_PATTERNS}" test_framework_suite.log | grep '\.\n*[A-Za-z]' || true)
258260
test "x$PRINTED_MSG" = "x" || (echo "ERROR: Found printed messages in output of test suite" && echo "${PRINTED_MSG}" && exit 1)

0 commit comments

Comments
 (0)