Skip to content

Commit 4bd0aa1

Browse files
committed
Add omit to final output
1 parent 9f1b3e1 commit 4bd0aa1

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -165,13 +165,14 @@ jobs:
165165
- name: Combine coverage results
166166
run: |
167167
# List the files to see what we have
168-
echo "Combining coverage files:"
168+
echo "Combining coverage files..."
169169
ls -aR .coverage*
170170
coverage combine .coverage*
171171
# add -i to ignore code in ephemeral python files created in temporary
172172
# directories during tests; this will result in warnings in the report
173-
coverage report -i -m
174-
coverage xml -i
173+
echo "Creating coverage report..."
174+
coverage report -i -m --omit inspect*,ann*
175+
coverage xml -i --omit inspect*,ann*
175176
176177
- name: Code Coverage Report
177178
uses: irongut/[email protected]

0 commit comments

Comments
 (0)