Skip to content

Commit 780d03f

Browse files
committed
[Bug Fix + Test] (config) Modify the file path value for combining testing coverage reports.
1 parent b2b6d42 commit 780d03f

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

.github/workflows/organize_all_testing_reports_with_different_test_type.yaml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,16 @@ jobs:
2929
with:
3030
name: new_project_testing_coverage_report_unit-test
3131
# path: .coverage-unit-test
32-
path: ./
32+
path: .coverage-*
33+
# path: ./
3334

3435
- name: Download code coverage result file
3536
uses: actions/download-artifact@v3
3637
with:
3738
name: new_project_testing_coverage_report_integration-test
3839
# path: .coverage-integration-test
39-
path: ./
40+
path: .coverage-*
41+
# path: ./
4042

4143
- name: Setup Python 3.10 in Ubuntu OS
4244
uses: actions/setup-python@v2
@@ -49,8 +51,11 @@ jobs:
4951
pip install -U pip
5052
pip install coverage
5153
54+
- name: List files and directories
55+
run: ls -la
56+
5257
- name: Combine all code coverage result files
53-
run: coverage combine .coverage*
58+
run: coverage combine .coverage-*
5459

5560
- name: Report testing coverage of project code
5661
run: coverage report -m

0 commit comments

Comments
 (0)