Try to fix find un-tested classes w/ pipefail

This commit is contained in:
2023-03-08 11:13:15 -06:00
parent 46baceee31
commit 259329e9aa

View File

@ -66,7 +66,7 @@ commands:
- run:
name: Find Un-tested Classes
command: |
for i in */target/site/jacoco/*/index.html; do html2text -width 500 -nobs $i | sed '1,/^Total/d;' | grep -v Created | sed 's/ \+/ /g' | sed 's/ [[:digit:]]$//' | grep -v 0$ | cut -d' ' -f1; done
set +o pipefail && for i in */target/site/jacoco/*/index.html; do html2text -width 500 -nobs $i | sed '1,/^Total/d;' | grep -v Created | sed 's/ \+/ /g' | sed 's/ [[:digit:]]$//' | grep -v 0$ | cut -d' ' -f1; done
- save_cache:
paths:
- ~/.m2