We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a9c55f commit 9b26e90Copy full SHA for 9b26e90
1 file changed
.github/jobs/coverage_diff/action.yml
@@ -31,7 +31,7 @@ runs:
31
GH_TOKEN: ${{ github.token }}
32
run: |
33
pip install pycobertura --quiet
34
- DIFF_OUTPUT=$(pycobertura diff /tmp/base-coverage.xml coverage.xml --no-source --format markdown || true)
+ DIFF_OUTPUT=$(pycobertura diff /tmp/base-coverage.xml coverage.xml --no-source --format markdown 2>/dev/null | sed 's/\x1b\[[0-9;]*m//g' || true)
35
COMMENT_BODY=$(cat <<EOF
36
## 📊 Coverage Diff
37
${DIFF_OUTPUT}
0 commit comments