-
Notifications
You must be signed in to change notification settings - Fork 141
268 lines (254 loc) · 10.2 KB
/
test.yaml
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
257
258
259
260
261
262
263
264
265
266
267
268
name: Test
on:
push:
branches:
- master
pull_request:
workflow_dispatch:
schedule:
- cron: '0 6 * * 1-5' # at 06:00 UTC on Monday and Thursday
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ !(github.ref == 'refs/heads/master') }}
env:
SOLARA_TELEMETRY_SERVER_USER_ID: "install-test"
SOLARA_TELEMETRY_MIXPANEL_TOKEN: adbf863d17cba80db608788e7fce9843
defaults:
run:
shell: bash {0}
jobs:
build:
uses: ./.github/workflows/build.yml
code-quality:
uses: ./.github/workflows/codequality.yaml
integration-test:
needs: [build]
timeout-minutes: 15
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
# just ubuntu and windows give enough confidence
# osx should work fine (and we test that locally often)
os: [ubuntu, windows]
# just 1 version, it's heavy
python-version: [3.8]
ipywidgets: ["7.7", "8.0"]
include:
- ipywidgets: "7.7"
voila: "0.3.0"
- ipywidgets: "8.0"
voila: "0.4.0"
env:
LOCK_FILE_LOCATION: .ci-package-locks/integration/os${{ matrix.os }}-python${{ matrix.python-version }}-voila${{ matrix.voila }}-ipywidgets${{ matrix.ipywidgets }}.txt
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- uses: actions/download-artifact@v2
with:
name: solara-builds-${{ github.run_number }}
- name: Link solara app package
run: |
cd packages/solara-vuetify-app
npm run devlink
- name: Prepare
id: prepare
run: |
mkdir test-results
if [ -f ${{ env.LOCK_FILE_LOCATION }} ]; then
echo "::set-output name=locks_exist::true"
else
echo "::set-output name=locks_exist::false"
fi
- name: Install without locking versions
if: github.event_name == 'schedule' || steps.prepare.outputs.locks_exist == 'false'
id: install_no_lock
run: |
rm -rf ${{ env.LOCK_FILE_LOCATION }}
pip install ".[dev, documentation, extra, flask, pytest]" "voila==${{ matrix.voila }}" "jupyterlab<4" "pydantic<2" "playwright==1.41.2"
(cd packages/solara-enterprise && pip install ".[ssg,auth]" "ipywidgets~=${{ matrix.ipywidgets }}")
pip freeze > "./${{ env.LOCK_FILE_LOCATION }}"
git diff --quiet && echo "::set-output name=exit_code::"NO_DIFF"
- name: Install
if: github.event_name != 'schedule'
run: |
pip install -r "./${{ env.LOCK_FILE_LOCATION }}"
- name: Install playwright
run: playwright install
- name: test
if: steps.install_no_lock.outputs.exit_code != 'NO_DIFF'
env:
AUTH0_USERNAME: [email protected]
AUTH0_PASSWORD: ${{ secrets.AUTH0_PASSWORD }}
FIEF_USERNAME: [email protected]
FIEF_PASSWORD: ${{ secrets.FIEF_PASSWORD }}
# TODO: we used to also run the (cheap) unittests, to get better coverage report, but that gives errors
# it seems on CI that the default playwright timeout is not (always?) respected, also, if the --timeout argument
# is shorter than the timeout of playwright, we get no good error message, summary: always keep above 30!
run: pytest tests/integration --timeout=360 --video=retain-on-failure --output=test-results -vv -s --log-cli-level=warning
- name: Upload Test artifacts
if: steps.install_no_lock.outputs.exit_code != 'NO_DIFF'
uses: actions/upload-artifact@v3
with:
name: test-results
path: test-results
- name: Upload CI package locks
if: steps.install_no_lock.outputs.exit_code != 'NO_DIFF' && github.event_name == 'schedule'
uses: actions/upload-artifact@v3
with:
name: ci-package-locks-${{ env.LOCK_FILE_LOCATION }}
path: ${{ env.LOCK_FILE_LOCATION }}
integration-test-vue3:
needs: [build]
timeout-minutes: 15
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
# just ubuntu and windows give enough confidence
# osx should work fine (and we test that locally often)
os: [ubuntu]
# just 1 version, it's heavy
python-version: [3.8]
ipywidgets: ["8.0"]
include:
- ipywidgets: "8.0"
voila: "0.4.0"
env:
LOCK_FILE_LOCATION: .ci-package-locks/integration-vue3/os${{ matrix.os }}-voila${{ matrix.voila }}-ipywidgets${{ matrix.ipywidgets }}.txt
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- uses: actions/download-artifact@v2
with:
name: solara-builds-${{ github.run_number }}
- name: Link solara app package
run: |
(cd packages/solara-vuetify-app; npm run devlink)
(cd packages/solara-vuetify3-app; npm run devlink)
- name: Prepare
id: prepare
run: |
mkdir test-results
if [ -f ${{ env.LOCK_FILE_LOCATION }} ]; then
echo "::set-output name=locks_exist::true"
else
echo "::set-output name=locks_exist::false"
fi
- name: Install without locking versions
id: install_no_lock
if: github.event_name == 'schedule' || steps.prepare.outputs.locks_exist == 'false'
run: |
rm -rf ${{ env.LOCK_FILE_LOCATION }}
pip install ".[dev, documentation, extra, pytest]" 'jupyterlab<4' 'voila==${{ matrix.voila }}' 'ipywidgets==${{ matrix.ipywidgets }}' 'playwright==1.41.2'
pip install jupyter_core jupyter-packaging
pip install https://github.com/widgetti/ipyvue/archive/refs/heads/vue3.zip https://github.com/widgetti/ipyvuetify/archive/refs/heads/vuetify3.zip
pip freeze > "./${{ env.LOCK_FILE_LOCATION }}"
git diff --quiet && echo "::set-output name=exit_code::"NO_DIFF"
- name: Install
if: github.event_name != 'schedule'
run: |
pip install -r "./${{ env.LOCK_FILE_LOCATION }}
- name: Install playwright
run: playwright install
- name: test
if: steps.install_no_lock.outputs.exit_code != 'NO_DIFF'
env:
AUTH0_USERNAME: [email protected]
AUTH0_PASSWORD: ${{ secrets.AUTH0_PASSWORD }}
FIEF_USERNAME: [email protected]
FIEF_PASSWORD: ${{ secrets.FIEF_PASSWORD }}
# TODO: we used to also run the (cheap) unittests, to get better coverage report, but that gives errors
# it seems on CI that the default playwright timeout is not (always?) respected, also, if the --timeout argument
# is shorter than the timeout of playwright, we get no good error message, summary: always keep above 30!
run: pytest tests/integration/widget_test.py --timeout=360 --video=retain-on-failure --output=test-results -vv -s --log-cli-level=warning
- name: Upload Test artifacts
if: steps.install_no_lock.outputs.exit_code != 'NO_DIFF'
uses: actions/upload-artifact@v3
with:
name: test-results
path: |
test-results
- name: Upload CI package locks
if: steps.install_no_lock.outputs.exit_code != 'NO_DIFF' && github.event_name == 'schedule'
uses: actions/upload-artifact@v3
with:
name: ci-package-locks-${{ env.LOCK_FILE_LOCATION }}
path: .ci-package-locks
unit-test:
runs-on: ${{ matrix.os }}-${{matrix.os == 'ubuntu' && '20.04' || 'latest' }}
strategy:
fail-fast: false
matrix:
os: [ubuntu, macos, windows]
python: [3.6, 3.9]
ipywidgets: ["7.7", "8.0"]
exclude:
- os: windows
python: 3.6
- os: ubuntu
python: 3.6
ipywidgets: "8.0"
- os: macos
python: 3.6
ipywidgets: "8.0"
env:
LOCK_FILE_LOCATION: .ci-package-locks/unit/os${{ matrix.os }}-python${{ matrix.python }}-ipywidgets${{ matrix.ipywidgets }}.txt
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
cache: "pip"
- name: Prepare
id: prepare
run: |
if [ -f ${{ env.LOCK_FILE_LOCATION }} ]; then
echo "::set-output name=locks_exist::true"
else
echo "::set-output name=locks_exist::false"
fi
- name: Install without locking versions
if: github.event_name == 'schedule' || steps.prepare.outputs.locks_exist == 'false'
run: |
pip install ".[dev, documentation, extra, pytest]" 'jupyterlab<4' 'ipywidgets==${{ matrix.ipywidgets }}' 'playwright==1.41.2'
- name: Install
if: github.event_name != 'schedule'
run: |
pip install -r "./${{ env.LOCK_FILE_LOCATION }}"
- name: Start Redis
if: matrix.os != 'windows'
uses: shogo82148/actions-setup-redis@v1
- name: test
run: pytest tests/unit --doctest-modules --timeout=60
- name: Upload Test artifacts
if: github.event_name == 'schedule'
uses: actions/upload-artifact@v3
with:
name: ci-package-locks-${{ env.LOCK_FILE_LOCATION }}
path: ${{ env.LOCK_FILE_LOCATION }}
update-ci-package-locks:
needs: [integration-test, integration-test-vue3, unit-test]
runs-on: ubuntu-latest
if: github.event_name == 'schedule' && success()
steps:
- uses: actions/checkout@v4
- name: Remove previous CI package locks
run: rm -rf .ci-package-locks
- uses: actions/download-artifact@v2
with:
name: ci-package-locks-*
- name: Update CI package locks
run: |
git config user.name 'github-actions[bot]'
git config user.email 'github-actions[bot]@users.noreply.github.com'
git add "./.ci-package-locks"
git commit -m "Update CI package locks"
git push