forked from sympy/sympy
-
Notifications
You must be signed in to change notification settings - Fork 0
505 lines (402 loc) · 16.1 KB
/
runtests.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
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
# ------------------------------------------------------------------ #
# #
# SymPy CI script for Github Actions #
# #
# Runs each time a pull request is opened, pushed or merged #
# #
# ------------------------------------------------------------------ #
name: test
on: [push, pull_request]
jobs:
# -------------------- Code quality ------------------------------ #
code-quality:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.12'
- run: python -m pip install --upgrade pip
- run: pip install -r requirements-dev.txt
- run: pip install ruff
- name: Basic code quality tests
run: bin/test quality
- name: Run flake8 on the sympy package
run: flake8 sympy
- name: Run Ruff on the sympy package
run: ruff check .
- name: Detect invalid escapes like '\e'
run: python -We:invalid -We::SyntaxWarning -m compileall -f -q sympy/
- name: Test all modules are listed in setup.py
run: bin/test_setup.py
# -- temporarily disabled -- #
# These checks were too difficult for new contributors. They will
# need to be made easier to work with before they are reenabled.
#- name: Test for ambiguous author information in commits
# run: bin/mailmap_update.py
#- name: Make sure all commits have an associated author
# run: bin/authors_update.py
# ----------------------------- mypy ----------------------------- #
mypy:
needs: code-quality
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.12'
- run: python -m pip install --upgrade pip
- run: pip install mpmath mypy hypothesis
- name: Run mypy on the sympy package
run: mypy sympy
# ------------------------- sphinx-lint -------------------------- #
sphinx-lint:
needs: code-quality
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.12'
- run: python -m pip install --upgrade pip
- run: pip install sphinx-lint
- name: Run sphinx-lint on the sympy documentation
run: sphinx-lint doc/
# --------------------------- check authors ---------------------- #
authors:
needs: code-quality
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
with:
# Clone full git history (needed for detecting authors)
fetch-depth: 0
- uses: actions/setup-python@v4
with:
python-version: '3.12'
- run: python -m pip install --upgrade pip
- run: pip install mpmath
- run: bin/mailmap_check.py
# -------------------- Doctests latest Python -------------------- #
doctests-latest:
needs: code-quality
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.12'
- run: python -m pip install --upgrade pip
- run: pip install mpmath
- run: bin/doctest --force-colors
- run: examples/all.py -q
# ------------------------- Test latest Python ------------------- #
tests-latest:
needs: code-quality
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
group: [1, 2, 3, 4]
name: Tests ${{ matrix.group }}/4
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.12'
- run: python -m pip install --upgrade pip
- run: pip install -r requirements-dev.txt
- run: bin/test --split ${{ matrix.group }}/4
# -------------------- Optional dependency tests ----------------- #
optional-dependencies:
needs: code-quality
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12']
name: ${{ matrix.python-version }} Optional Dendendencies
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- run: pip install -r requirements-dev.txt
# Install the non-Python dependencies
- run: sudo apt-get update
- run: sudo apt-get install antlr4 clang
- run: python -m pip install --upgrade pip wheel setuptools
# dependencies to install in all Python versions:
- run: pip install numpy numexpr matplotlib ipython cython \
wurlitzer autowrap lxml lark z3-solver pycosat \
jax jaxlib libclang scipy aesara \
'antlr4-python3-runtime==4.11.*' \
#
# Not available in CPython 3.12 (yet).
- if: ${{ ! contains(matrix.python-version, '3.12') }}
run: pip install llvmlite numba gmpy2 symengine pymc
# Test external imports
- run: bin/test_external_imports.py
- run: bin/test_submodule_imports.py
- run: bin/test_executable.py
# Test modules with specific dependencies
- run: bin/test_optional_dependencies.py
# -------------------- FLINT tests -------------------------------- #
python-flint:
needs: code-quality
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
# python-flint is not yet available for Python 3.12
# https://github.com/flintlib/python-flint/issues/52
python-version: '3.11'
- run: python -m pip install --upgrade pip
- run: pip install -r requirements-dev.txt
- run: pip install python-flint
# Test the modules that most directly use python-flint
- run: pytest sympy/polys sympy/ntheory sympy/matrices
env:
SYMPY_GROUND_TYPES: flint
- run: bin/doctest \
sympy/integrals \
sympy/holonomic \
sympy/matrices \
sympy/ntheory \
sympy/polys \
sympy/printing \
doc/src/modules/integrals \
doc/src/modules/holonomic \
doc/src/modules/matrices \
doc/src/modules/ntheory.rst \
doc/src/modules/polys \
doc/src/modules/printing.rst \
doc/src/tutorials/intro-tutorial/ \
env:
SYMPY_GROUND_TYPES: flint
# -------------------- FLINT+gmpy2 ------------------------------ #
flint-gmpy2:
needs: code-quality
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.11'
- run: python -m pip install --upgrade pip
- run: pip install -r requirements-dev.txt
- run: pip install python-flint gmpy2
# Test the modules that most directly use python-flint
- run: pytest sympy/polys sympy/ntheory sympy/matrices
env:
SYMPY_GROUND_TYPES: flint
- run: bin/doctest \
sympy/integrals \
sympy/holonomic \
sympy/matrices \
sympy/ntheory \
sympy/polys \
sympy/printing \
doc/src/modules/integrals \
doc/src/modules/holonomic \
doc/src/modules/matrices \
doc/src/modules/ntheory.rst \
doc/src/modules/polys \
doc/src/modules/printing.rst \
doc/src/tutorials/intro-tutorial/ \
env:
SYMPY_GROUND_TYPES: flint
# -------------------- Tensorflow tests -------------------------- #
tensorflow:
needs: code-quality
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
# tensorflow not yet available for 3.12
python-version: '3.11'
- run: python -m pip install --upgrade pip
- run: pip install -r requirements-dev.txt
- run: pip install numpy scipy tensorflow
# Test modules that can use tensorflow
- run: bin/test_tensorflow.py
# -------------------- SymEngine tests --------------------------- #
symengine:
needs: code-quality
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
# symengine not yet available for 3.12
python-version: '3.11'
- run: python -m pip install --upgrade pip
- run: pip install -r requirements-dev.txt
- run: pip install numpy symengine
# Test modules that can use tensorflow
- run: bin/test_symengine.py
env:
USE_SYMENGINE: '1'
# ------------------------- Slow tests --------------------------- #
tests-slow:
needs: [doctests-latest, tests-latest]
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
group: [1, 2, 3, 4]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.12'
- run: python -m pip install --upgrade pip
- run: pip install -r requirements-dev.txt
- run: bin/test --slow --timeout 595 --split ${{ matrix.group }}/4
# -------------------- Test older (and newer) Python --------------- #
tests-other-python:
needs: [doctests-latest, tests-latest]
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.13-dev', 'pypy-3.9']
group: [1, 2, 3, 4]
name: ${{ matrix.python-version }} ${{ matrix.group }}/4 Tests
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- run: python -m pip install --upgrade pip
- run: pip install -r requirements-dev.txt
- run: bin/test --split ${{ matrix.group }}/4
# -------------------- Doctests older (and newer) Python --------------------- #
doctests-other-python:
needs: [doctests-latest, tests-latest]
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.13-dev', 'pypy-3.9']
name: ${{ matrix.python-version }} Doctests
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- run: python -m pip install --upgrade pip
- run: pip install mpmath
- run: bin/doctest --force-colors
- run: examples/all.py -q
# -------------------- Build the html/latex docs ----------------- #
sphinx:
needs: [doctests-latest, tests-latest]
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.12'
- run: doc/aptinstall.sh
- run: pip install -r doc/requirements.txt
- run: bin/test_sphinx.sh
# When run against master, deploy to docs.sympy.org/dev. This requires
# having an SSH deploy key set up. See
# https://github.com/marketplace/actions/deploy-to-github-pages#using-an-ssh-deploy-key-
- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4
if: ${{ github.ref == 'refs/heads/master' }}
with:
folder: doc/_build/html
ssh-key: ${{ secrets.DEPLOY_KEY }}
repository-name: sympy/sympy_doc
target-folder: dev
# -------------------- Check the error message under py2 --------- #
py2-import:
needs: [doctests-latest, tests-latest]
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 'pypy2.7'
- run: bin/test_py2_import.py
# -------------------- Check the list of files for sdist --------- #
sdist-check:
needs: [doctests-latest, tests-latest]
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.12'
- run: python -m pip install --upgrade pip build
- run: python -m build --sdist
- run: release/compare_tar_against_git.py dist/*.tar.gz .
# -------- Run benchmarks against master and previous release ---- #
benchmarks:
needs: [doctests-latest, tests-latest]
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
with:
# Checkout repo with full history
fetch-depth: 0
- uses: actions/setup-python@v4
with:
python-version: '3.12'
- run: pip install asv virtualenv packaging
- run: git submodule add https://github.com/sympy/sympy_benchmarks.git
# Need to make sure we can access the branches from the main repo. We
# will run benchmarks for the PR, for master and for the previous
# release. The version branch names below should be updated once there
# has been a newer release of sympy. The list of branches to check is
# also specified in asv.conf.actions.json which should be updated as
# well.
- run: git remote add upstream https://github.com/sympy/sympy.git
- run: git fetch upstream master
- run: git fetch upstream 1.12
- name: Configure benchmarks
run: asv machine --yes --config asv.conf.actions.json
# This is the slow part:
- name: Run benchmarks
run: asv run --config asv.conf.actions.json
# Output benchmark results
- run: asv compare upstream/master HEAD --config asv.conf.actions.json --factor 1.5 | tee pr_vs_master.txt
- run: asv compare upstream/master HEAD --config asv.conf.actions.json --factor 1.5 --only-changed | tee pr_vs_master_changed.txt
- run: asv compare upstream/1.12 upstream/master --config asv.conf.actions.json --factor 1.5 | tee master_vs_release.txt
- run: asv compare upstream/1.12 upstream/master --config asv.conf.actions.json --factor 1.5 --only-changed | tee master_vs_release_changed.txt
# This workflow does not have write permissions for the repository so
# we save all outputs as artifacts that can be accessed by the
# comment-on-pr workflow which is triggered by workflow_run to run when
# this one completes.
- name: Upload results as artifacts
uses: actions/upload-artifact@v3
with:
name: benchmarks
path: |
pr_vs_master.txt
pr_vs_master_changed.txt
master_vs_release.txt
master_vs_release_changed.txt
# -------------------- Save PR number ---------------------------- #
save-pr-number:
needs: [doctests-latest, tests-latest]
# The comment-on-pr workflow needs the issue number of the PR to be able to
# comment so we output that to a file and pass it over as an artifact.
runs-on: ubuntu-20.04
steps:
- name: Write PR number to file
if: ${{ github.event_name == 'pull_request' }}
run: echo -n ${{ github.event.number }} > pr_number.txt
- name: Write empty file for PR number
if: ${{ github.event_name != 'pull_request' }}
run: echo -n > pr_number.txt
- name: Upload results as artifacts
uses: actions/upload-artifact@v3
with:
name: pr_number
path: pr_number.txt