File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -54,14 +54,14 @@ jobs:
5454
5555 - name : Combine all testing code coverage result files with one specific test type
5656 if : ${{ inputs.test_type == 'unit-test' || inputs.test_type == 'integration-test' }}
57- run : coverage combine --data-file=.coverage.${{ inputs.test_type }} .coverage.${{ inputs.test_type }}.*
58-
59- - name : Combine all testing code coverage result files with all test types
60- if : ${{ inputs.test_type == 'all-test' }}
6157 run : |
6258 pwd
6359 ls -la
64- coverage combine --data-file=.coverage.${{ inputs.test_type }} .coverage.*
60+ coverage combine --data-file=.coverage.${{ inputs.test_type }} .coverage.${{ inputs.test_type }}.*
61+
62+ - name : Combine all testing code coverage result files with all test types
63+ if : ${{ inputs.test_type == 'all-test' }}
64+ run : coverage combine --data-file=.coverage.${{ inputs.test_type }} .coverage.*
6565
6666 - name : Report testing coverage of project code
6767 run : coverage report -m --data-file=.coverage.${{ inputs.test_type }}
You can’t perform that action at this time.
0 commit comments