Skip to content

Commit 72c3a7c

Browse files
authored
Merge pull request #30 from Chisanan232/develop
🛠🐛💣 [Bug Fix] (config) Fix the issue of setup Python error with version 3.6 and ubuntu 20.04.
2 parents 9e51b7e + d1e19a8 commit 72c3a7c

File tree

3 files changed

+13
-19
lines changed

3 files changed

+13
-19
lines changed

.coveragerc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,6 @@ source=./test_gh_workflow
55

66
omit =
77
*/__init__.py
8+
9+
[path]
10+
source=./test_gh_workflow

.github/workflows/run_test_items_via_pytest.yaml

Lines changed: 9 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -76,32 +76,23 @@ jobs:
7676
strategy:
7777
matrix:
7878
python-version: [3.6,3.7,3.8,3.9,'3.10','3.11']
79-
os: [ubuntu-latest,macos-latest]
79+
os: [ubuntu-20.04,ubuntu-latest,macos-latest]
8080
exclude:
81-
- os: ubuntu-18.04
81+
- os: ubuntu-latest
8282
python-version: 3.6
83-
- os: ubuntu-18.04
84-
python-version: 3.9
85-
- os: ubuntu-18.04
86-
python-version: '3.10'
8783
- os: ubuntu-20.04
88-
python-version: 3.8
84+
python-version: 3.7
8985
- os: ubuntu-20.04
90-
python-version: 3.9
91-
- os: ubuntu-22.04
92-
python-version: 3.6
93-
- os: macos-10.15
94-
python-version: 3.6
95-
- os: macos-10.15
9686
python-version: 3.8
97-
- os: macos-11
98-
python-version: 3.6
99-
- os: macos-11
87+
- os: ubuntu-20.04
10088
python-version: 3.9
101-
- os: macos-12
102-
python-version: 3.6
89+
- os: ubuntu-20.04
90+
python-version: '3.10'
91+
- os: ubuntu-20.04
92+
python-version: 3.11
10393
test-path: ${{fromJson(inputs.all_test_items_paths)}}
10494

95+
10596
steps:
10697
- uses: actions/checkout@v3
10798

.github/workflows/test_python_project_ci_one-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
with:
4343
test_type: unit-test
4444
all_test_items_paths: ${{needs.prep-testbed_unit-test.outputs.all_test_items}}
45-
debug_mode: true
45+
# debug_mode: true
4646

4747

4848
unit-test_codecov:

0 commit comments

Comments
 (0)