-
Notifications
You must be signed in to change notification settings - Fork 62
256 lines (219 loc) · 5.98 KB
/
test-suite.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
name: Test Suite
on:
push:
branches:
- main
pull_request:
defaults:
run:
shell: bash -l {0}
concurrency:
group: test-${{github.ref}}
cancel-in-progress: true
jobs:
conda:
name: Conda Python ${{matrix.python}} on ${{matrix.platform}}
runs-on: ${{matrix.platform}}-latest
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
python:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
platform:
- macos
- windows
- ubuntu
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: 👢 Set up Conda environment
uses: lenskit/lkbuild/actions/setup-conda-env@main
id: setup
with:
extras: sklearn
python-version: ${{matrix.python}}
- name: Inspect environment
run: |
python -V
numba -s
- name: Test LKPY
run: |
python -m pytest --cov=lenskit --verbose --log-file=test.log
env:
NUMBA_NUM_THREADS: 4
MKL_THREADING_LAYER: sequential
OMP_NUM_THREADS: 1
OPENBLAS_NUM_THREADS: 1
- name: Non-JIT Test Coverage
if: runner.os == 'Linux'
env:
NUMBA_DISABLE_JIT: 1
run: |
python -m pytest --cov=lenskit --cov-append -m 'not slow' --log-file=test-nojit.log
- name: Aggreagate Coverage Data
run: |
coverage xml
- name: Upload logs
uses: actions/upload-artifact@v2
with:
name: log-conda-${{matrix.platform}}-py${{matrix.python}}-${{matrix.blas}}
path: |
coverage.xml
test*.log
emissions.csv
check-docs:
name: Docs, Examples, and Eval
timeout-minutes: 30
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: 👢 Set up Conda environment
uses: lenskit/lkbuild/actions/setup-conda-env@main
id: setup
with:
python-version: '3.8'
extras: demo
- name: Inspect Conda environment
run: |
echo "Conda environment info"
conda info
echo "Conda environment package list"
conda list
- name: Cache ML data
uses: actions/cache@v2
with:
path: |
data
!data/*.zip
key: test-mldata-000
- name: Download ML Data
run: |
lkbuild fetch-data -d ml-100k
lkbuild fetch-data -d ml-1m
lkbuild fetch-data -d ml-10m
lkbuild fetch-data -d ml-20m
- name: Install for Testing
run: |
flit install --deps none -s
- name: Run Eval Tests
run: |
python -m pytest --cov=lenskit -m eval --log-file test-eval.log
python -m pytest --cov=lenskit --cov-append -m realdata --log-file test-realdata.log
- name: Validate Doc Notebooks
run: |
cp docs/*.ipynb data
python -m pytest --nbval-lax --cov=lenskit --cov-append data --log-file test-docs.log
# - name: Validate Examples
# run: |
# python -m pytest --nbval-lax --cov=lenskit --cov-append examples --log-file test-examples.log
- name: Aggreagate Coverage Data
run: |
coverage xml
- name: Upload logs
uses: actions/upload-artifact@v2
with:
name: log-check-docs
path: |
test*.log
coverage.xml
emissions.csv
vanilla:
name: Vanilla Python ${{matrix.python}} on ${{matrix.platform}}
runs-on: ${{matrix.platform}}-latest
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
python:
- "3.8"
- "3.9"
- "3.10"
platform:
- windows
- ubuntu
steps:
- name: Check out source
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Python and environment
uses: lenskit/lkbuild/actions/setup-vanilla-env@main
with:
python-version: ${{matrix.python}}
- name: Run tests
run: |
python -m pytest --cov=lenskit --cov-report=xml --log-file=test.log
- name: Aggreagate Coverage Data
run: coverage xml
- name: Upload logs
uses: actions/upload-artifact@v2
with:
name: log-vanilla-${{matrix.platform}}-py${{matrix.python}}
path: |
test*.log
coverage.xml
emissions.csv
mindep:
name: Minimal Supported Dependencies
runs-on: ubuntu-latest
steps:
- name: Check out source
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: '3.7'
architecture: x64
- name: Set up Python deps
run: |
set -e
python -m pip install -U pip
python -m pip install -c min-constraints.txt .[test]
python -m pip install pytest-cov
- name: Run tests
run: |
python -m pytest --cov=lenskit --cov-report=xml --log-file test.log
- name: Upload logs
uses: actions/upload-artifact@v2
with:
name: log-mindep
path: |
test*.log
coverage.xml
emissions.csv
results:
name: Test Suite Results
runs-on: ubuntu-latest
needs:
- conda
- vanilla
- check-docs
- mindep
steps:
- name: Check out source
uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/download-artifact@v2
with:
path: test-logs
- name: List log files
run: ls -lR test-logs
- name: Upload coverage
uses: codecov/codecov-action@v2
with:
directory: test-logs/
- name: Upload all test data
uses: actions/upload-artifact@v1
with:
name: test-outputs
path: test-logs