Skip to content

Commit 756b48e

Browse files
committed
[Breaking Change] (config) Remove the steps for testing and troubleshooting, and modify some options value.
1 parent 6ac31e2 commit 756b48e

File tree

3 files changed

+2
-13
lines changed

3 files changed

+2
-13
lines changed

.github/workflows/organize_all_testing_coverage_reports_with_different_os_and_py_version.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
uses: actions/download-artifact@v3
4141
with:
4242
name: coverage
43-
path: .coverage.${{ inputs.test_type }}*
43+
path: ./
4444

4545
- name: Setup Python 3.10 in Ubuntu OS
4646
uses: actions/setup-python@v2

.github/workflows/organize_all_testing_reports_with_different_test_type.yaml

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -28,16 +28,12 @@ jobs:
2828
uses: actions/download-artifact@v3
2929
with:
3030
name: new_project_testing_coverage_report_unit-test
31-
# path: .coverage-unit-test
32-
# path: .coverage-*
3331
path: ./
3432

3533
- name: Download code coverage result file
3634
uses: actions/download-artifact@v3
3735
with:
3836
name: new_project_testing_coverage_report_integration-test
39-
# path: .coverage-integration-test
40-
# path: .coverage-*
4137
path: ./
4238

4339
- name: Setup Python 3.10 in Ubuntu OS
@@ -51,15 +47,8 @@ jobs:
5147
pip install -U pip
5248
pip install coverage
5349
54-
- name: List files and directories
55-
run: ls -la
56-
57-
- name: List files and directories
58-
run: ls -la .coverage-*
59-
6050
- name: Combine all code coverage result files
6151
run: coverage combine .coverage-*
62-
# run: coverage combine .coverage-*/*
6352

6453
- name: Report testing coverage of project code
6554
run: coverage report -m

.github/workflows/test-reusable-workflows.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ jobs:
104104
secrets:
105105
codacy_token: ${{ secrets.CODACY_PROJECT_TOKEN }}
106106
with:
107-
download_path: ./coverage.xml
107+
download_path: ./
108108

109109

110110
# pre-building_check:

0 commit comments

Comments
 (0)