Skip to content

Commit 839fc83

Browse files
committed
[Debug] (config) Print log message about file tree.
1 parent cc28790 commit 839fc83

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/organize_and_generate_test_cov_reports.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff 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 }}

0 commit comments

Comments
 (0)