File tree 1 file changed +6
-3
lines changed
1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change 14
14
jobs :
15
15
16
16
build_wheels :
17
+ name : Build wheels
17
18
runs-on : ${{ matrix.os }}
18
19
strategy :
19
20
matrix :
43
44
path : dist/pecos*
44
45
45
46
test_wheels :
47
+ name : Test wheels
46
48
needs : build_wheels
47
49
runs-on : ${{ matrix.os }}
48
50
strategy :
64
66
python -m pip install --upgrade pip
65
67
pip install wheel numpy pandas jinja2 matplotlib pytest
66
68
pip install --no-index --pre --find-links=. pecos
67
- - name : Usage of pecos
69
+ - name : Import pecos
68
70
run : |
69
71
python -c "import pecos"
70
72
74
76
matrix :
75
77
python-version : ['3.9', '3.10', '3.11', '3.12']
76
78
os : [windows-latest, macOS-latest, ubuntu-latest]
79
+ fail-fast : false
77
80
steps :
78
81
- uses : actions/checkout@v4
79
82
- name : Set up Python ${{ matrix.python-version }}
98
101
with :
99
102
name : .coverage.${{ matrix.python-version }}.${{ matrix.os }}
100
103
path : .coverage.${{ matrix.python-version }}.${{ matrix.os }}
104
+ include-hidden-files : true
101
105
102
106
combine_reports :
103
107
needs : [ run_coverage ]
@@ -129,8 +133,7 @@ jobs:
129
133
echo " D:\\a\\pecos\\pecos\\pecos" >> .coveragerc
130
134
echo " /home/runner/work/pecos/pecos/pecos" >> .coveragerc
131
135
echo " /Users/runner/work/pecos/pecos/pecos" >> .coveragerc
132
- coverage combine
133
-
136
+ echo " ${{ github.workspace }}/pecos" >> .coveragerc
134
137
coverage report
135
138
coverage json --pretty-print
136
139
coverage html --show-contexts
You can’t perform that action at this time.
0 commit comments