-
Notifications
You must be signed in to change notification settings - Fork 182
600 lines (576 loc) · 17.6 KB
/
downstream_tests.yml
File metadata and controls
600 lines (576 loc) · 17.6 KB
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
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
name: Test Downstream Libraries - Fast
on:
pull_request:
push:
branches: [main]
env:
PY_COLORS: 1
jobs:
altair:
strategy:
matrix:
python-version: ["3.12"]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v5
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v6
with:
enable-cache: "true"
cache-suffix: altair-${{ matrix.python-version }}
cache-dependency-glob: "pyproject.toml"
- name: clone-altair
run: |
git clone https://github.com/vega/altair.git --depth=1
cd altair
git log
- name: install-basics
run: uv pip install --upgrade tox virtualenv setuptools --system
- name: install-altair-dev
run: |
cd altair
uv pip install -e ".[dev, all]" --system
- name: install-narwhals-dev
run: |
uv pip uninstall narwhals --system
uv pip install -e . --system
- name: show-deps
run: uv pip freeze
- name: Run pytest
run: |
cd altair
pytest tests
- name: Run mypy
run: |
cd altair
mypy altair tests
marimo:
strategy:
matrix:
python-version: ["3.12"]
os: [ubuntu-latest]
dependencies: ["core,optional"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v5
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v6
with:
enable-cache: "true"
cache-suffix: marimo-${{ matrix.python-version }}
cache-dependency-glob: "pyproject.toml"
- name: clone-marimo
run: |
git clone https://github.com/marimo-team/marimo.git --depth=1
cd marimo
uv venv -p 3.12
git log
- name: install-basics
run:
uv pip install --upgrade tox virtualenv setuptools hatch
"click!=8.3.0" --system
- name: install-marimo-dev
run: |
cd marimo
. .venv/bin/activate
uv pip install -e ".[dev]"
which python
- name: install-narwhals-dev
run: |
cd marimo
. .venv/bin/activate
uv pip uninstall narwhals
uv pip install -e ./..
- name: show-deps
run: |
cd marimo
. .venv/bin/activate
uv pip freeze
- name: Create assets directory, copy over index.html
continue-on-error: true
run: |
mkdir -p marimo/marimo/_static/assets
cp marimo/frontend/index.html marimo/marimo/_static/index.html
cp marimo/frontend/public/favicon.ico marimo/marimo/_static/favicon.ico
- name: Run tests with full dependencies
if: ${{ matrix.dependencies == 'core,optional' }}
run: |
cd marimo
. .venv/bin/activate
# make sure that we use the .venv when running tests, so that
# the local narwhals install is picked up
sed -i '/^\[tool.hatch.envs.default\]/a path = ".venv"' pyproject.toml
hatch run python -c "import narwhals; print(narwhals.__file__)"
hatch run +py=${{ matrix.python-version }} test-optional:test-narwhals
timeout-minutes: 15
scikit-lego:
strategy:
matrix:
python-version: ["3.11"]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v5
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v6
with:
enable-cache: "true"
cache-suffix: sklego-${{ matrix.python-version }}
cache-dependency-glob: "pyproject.toml"
- name: clone-scikit-lego
run: git clone https://github.com/koaning/scikit-lego.git --depth 1
- name: install-basics
run: uv pip install --upgrade tox virtualenv setuptools --system
- name: install-scikit-lego-dev
run: |
cd scikit-lego
uv pip install -e ".[test]" --system
- name: install-narwhals-dev
run: |
uv pip uninstall narwhals --system
uv pip install -e . --system
- name: show-deps
run: uv pip freeze
- name: Run pytest
run: |
cd scikit-lego
pytest -n auto --disable-warnings --cov=sklego -m "not cvxpy and not formulaic and not umap"
shiny:
strategy:
matrix:
python-version: ["3.12"]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v5
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v6
with:
enable-cache: "true"
cache-suffix: shiny-${{ matrix.python-version }}
cache-dependency-glob: "pyproject.toml"
- name: clone-shiny
run: |
git clone https://github.com/posit-dev/py-shiny.git
cd py-shiny
uv venv -p ${{ matrix.python-version }}
git log
- name: install-basics
run: |
cd py-shiny
. .venv/bin/activate
uv pip install --upgrade tox virtualenv setuptools
- name: install-shiny-dev
run: |
cd py-shiny
. .venv/bin/activate
make narwhals-install-shiny
- name: install-narwhals-dev
run: |
cd py-shiny
. .venv/bin/activate
uv pip uninstall narwhals
uv pip install -e ./..
- name: show-deps
run: |
cd py-shiny
. .venv/bin/activate
uv pip freeze
- name: Run `make narwhals-test-integration`
run: |
cd py-shiny
. .venv/bin/activate
# Isort seems to behave slightly differently in CI
# so we ignore its output
make format -s
make narwhals-test-integration
tea-tasting:
strategy:
matrix:
python-version: ["3.12"]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v5
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: clone-tea-tasting
run: |
git clone https://github.com/e10v/tea-tasting.git --depth=1
cd tea-tasting
git log
- name: install-uv
uses: astral-sh/setup-uv@v6
with:
enable-cache: true
cache-suffix: tea-tasting-${{ matrix.python-version }}
cache-dependency-glob: "pyproject.toml"
python-version: ${{ matrix.python-version }}
- name: install-tea-tasting-test
run: |
cd tea-tasting
uv sync --group test
- name: install-narwhals-dev
run: |
cd tea-tasting
uv pip uninstall narwhals
uv pip install -e ./..
- name: show-deps
run: |
cd tea-tasting
uv pip freeze
- name: run-pytest
run: |
cd tea-tasting
# empty pytest.ini to avoid pytest using narwhals configs
touch pytest.ini
uv run --no-sync pytest tests
tubular:
strategy:
matrix:
python-version: ["3.12"]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v5
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v6
with:
enable-cache: "true"
cache-suffix: tubular-${{ matrix.python-version }}
cache-dependency-glob: "pyproject.toml"
- name: clone-tubular
run: |
git clone https://github.com/lvgig/tubular --depth=1
cd tubular
git log
- name: install-basics
run:
uv pip install --upgrade tox virtualenv setuptools pytest-env --system
- name: install-tubular-dev
run: |
cd tubular
uv pip install -e ".[dev]" --system
- name: install-narwhals-dev
run: |
uv pip uninstall narwhals --system
uv pip install -e . --system
- name: show-deps
run: uv pip freeze
- name: Run pytest
run: |
cd tubular
pytest tests --config-file=pyproject.toml
plotly:
strategy:
matrix:
python-version: ["3.12"]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v5
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v6
with:
enable-cache: "true"
cache-suffix: plotly-${{ matrix.python-version }}
cache-dependency-glob: "pyproject.toml"
- name: clone-plotly
run: |
git clone https://github.com/plotly/plotly.py --depth=1
cd plotly.py
git log
- name: install-deps
run: |
cd plotly.py
uv venv -p ${{ matrix.python-version }}
uv sync --extra dev_optional
- name: install-narwhals-dev
run: |
cd plotly.py
. .venv/bin/activate
uv pip uninstall narwhals
uv pip install -e ./..
- name: show-deps
run: |
cd plotly.py
. .venv/bin/activate
uv pip freeze
- name: Run pytest on plotly express
run: |
cd plotly.py
. .venv/bin/activate
pytest tests/test_optional/test_px
hierarchicalforecast:
strategy:
matrix:
python-version: ["3.12"]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v5
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v6
with:
enable-cache: "true"
cache-suffix: hierarchicalforecast-${{ matrix.python-version }}
cache-dependency-glob: "pyproject.toml"
- name: clone-hierarchicalforecast
run: |
git clone https://github.com/Nixtla/hierarchicalforecast --depth=1
cd hierarchicalforecast
git log
- name: install-basics
run: uv pip install --upgrade tox virtualenv setuptools --system
- name: install-deps
run: |
cd hierarchicalforecast
uv pip install --system ".[dev,polars]"
- name: install-narwhals-dev
run: |
uv pip uninstall narwhals --system
uv pip install -e . --system
- name: show-deps
run: uv pip freeze
- name: Run tests
run: |
cd hierarchicalforecast
pytest tests
formulaic:
strategy:
matrix:
python-version: ["3.12"]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v5
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v6
with:
enable-cache: "true"
cache-suffix: formulaic-${{ matrix.python-version }}
cache-dependency-glob: "pyproject.toml"
- name: clone-formulaic
run: |
git clone https://github.com/matthewwardrop/formulaic.git --depth=1
cd formulaic
git log
- name: create-hatch-env
run: |
cd formulaic
uv pip install hatch hatch-vcs "click!=8.3.0" --system
- name: install-formulaic-dev
run: |
cd formulaic
hatch run uv pip install -e ".[arrow,calculus]"
- name: install-narwhals-dev
run: |
cd formulaic
hatch run uv pip uninstall narwhals
hatch run uv pip install -e ./..
- name: show-deps
run: hatch run uv pip freeze
- name: run test
run: |
cd formulaic
hatch run tests --config-file=pyproject.toml
pointblank:
strategy:
matrix:
python-version: ["3.12"]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v5
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v6
with:
enable-cache: "true"
cache-suffix: pointblank-${{ matrix.python-version }}
cache-dependency-glob: "pyproject.toml"
- name: clone-pointblank
run: |
git clone https://github.com/posit-dev/pointblank.git --depth=1
cd pointblank
git log
- name: install-basics
run: uv pip install --upgrade tox virtualenv setuptools --system
- name: install-deps
run: |
cd pointblank
uv venv -p ${{ matrix.python-version }}
. .venv/bin/activate
uv pip install . --group dev
uv pip install pytest pytest-cov pytest-snapshot pandas polars "ibis-framework[duckdb,mysql,postgres,sqlite]>=9.5.0" chatlas shiny
- name: install-narwhals-dev
run: |
cd pointblank
. .venv/bin/activate
uv pip uninstall narwhals
uv pip install -e .
- name: show-deps
run: |
cd pointblank
. .venv/bin/activate
uv pip freeze
- name: Run tests
run: |
cd pointblank
. .venv/bin/activate
# make sure that we use the .venv when running tests, so that
# the local narwhals install is picked up
sed -i 's/uv run pytest/uv run --no-sync pytest/g' Makefile
make test
validoopsie:
strategy:
matrix:
python-version: ["3.9", "3.12"] # 3.9 and 3.12 are enough to cover all the tests
os: ["ubuntu-latest"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v5
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v6
with:
enable-cache: "true"
cache-suffix: validoopsie-${{ matrix.python-version }}
cache-dependency-glob: "pyproject.toml"
- name: clone-validoopsie
run: |
git clone https://github.com/akmalsoliev/Validoopsie.git --depth=1 validoopsie
cd validoopsie
git log
- name: install-validoopsie-dev
run: |
cd validoopsie
uv sync --dev --upgrade
- name: install-narwhals-dev
run: |
cd validoopsie
uv remove narwhals
uv add ./..
- name: show-deps
run: |
cd validoopsie
which python
uv pip freeze
- name: Run tests
run: |
cd validoopsie
# empty pytest.ini to avoid pytest using narwhals configs
touch pytest.ini
touch tests/__init__.py
touch tests/utils/__init__.py
# Keep `--no-sync` in case Narwhals is re-synced with PyPI version
uv run --no-sync pytest tests
timeout-minutes: 15
darts:
strategy:
matrix:
python-version: ["3.11"]
os: ["ubuntu-latest"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v5
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v6
with:
enable-cache: "true"
cache-suffix: darts-${{ matrix.python-version }}
cache-dependency-glob: "pyproject.toml"
- name: clone-darts
run: |
git clone https://github.com/unit8co/darts.git --depth=1
cd darts
git log
- name: install-deps
run: |
cd darts
uv pip install -r requirements/core.txt -r requirements/dev.txt --system
- name: install-narwhals-dev
run: |
uv pip uninstall narwhals --system
# TODO(FBruzzesi): Install polars from darts requirements when they introcude it
uv pip install -e ".[polars]" pyarrow --system
- name: show-deps
run: uv pip freeze
- name: Run tests
run: |
cd darts
pytest darts/tests/test_timeseries.py
pytest darts/tests/test_timeseries_multivariate.py
pytest darts/tests/test_timeseries_static_covariates.py
gt-extras:
strategy:
matrix:
python-version: ["3.12"]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v5
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v6
with:
enable-cache: "true"
cache-suffix: gt-extras-${{ matrix.python-version }}
cache-dependency-glob: "pyproject.toml"
- name: clone-gt-extras
run: |
git clone https://github.com/posit-dev/gt-extras.git --depth 1
cd gt-extras
git log
- name: install-gt-extras-dev
run: |
cd gt-extras
uv sync --all-extras --dev
- name: install-narwhals-dev
run: |
cd gt-extras
uv pip uninstall narwhals
uv pip install -e ./..
- name: show-deps
run: |
cd gt-extras
uv pip freeze
- name: run-pytest
run: |
cd gt-extras
uv run --no-sync pytest