File tree Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 9999 - run : ls -la coverage
100100 - run : coverage combine coverage
101101 - run : coverage report
102- - run : coverage html --show-contexts -- title "Coverage for ${{ github.sha }}"
102+ - run : coverage html --title "Coverage for ${{ github.sha }}"
103103 - name : Store coverage HTML
104104 uses : actions/upload-artifact@v4
105105 with :
Original file line number Diff line number Diff line change @@ -86,18 +86,24 @@ source = [
8686 " tests" ,
8787]
8888context = ' ${CONTEXT}'
89+ dynamic_context = " test_function"
8990omit = [
9091 " tests/assets/*" ,
9192]
9293
9394[tool .coverage .report ]
95+ show_missing = true
96+ sort = " -Cover"
9497exclude_lines = [
9598 " pragma: no cover" ,
9699 " @overload" ,
97100 ' if __name__ == "__main__":' ,
98101 " if TYPE_CHECKING:" ,
99102]
100103
104+ [tool .coverage .html ]
105+ show_contexts = true
106+
101107[tool .mypy ]
102108strict = true
103109exclude = [
Original file line number Diff line number Diff line change 55
66bash scripts/test.sh ${@ }
77coverage combine
8- coverage report --show-missing
8+ coverage report
99coverage html
You can’t perform that action at this time.
0 commit comments