-
Notifications
You must be signed in to change notification settings - Fork 42
59 lines (56 loc) · 1.91 KB
/
tests.yml
File metadata and controls
59 lines (56 loc) · 1.91 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
name: Tests
on: [push, pull_request]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- python-version: '3.10'
numpy-version: '1.22'
- python-version: '3.10'
numpy-version: '1.26'
- python-version: '3.10'
numpy-version: 'latest'
- python-version: '3.11'
numpy-version: 'dev'
- python-version: '3.12'
numpy-version: '1.22'
- python-version: '3.12'
numpy-version: '1.26'
- python-version: '3.13'
numpy-version: 'latest'
- python-version: '3.13'
numpy-version: 'dev'
fail-fast: false
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
if [ "${{ matrix.numpy-version }}" == "dev" ]; then
python -m pip install pytest
python -m pip install numpy --pre --extra-index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple
elif [ "${{ matrix.numpy-version }}" == "1.22" ]; then
python -m pip install pytest numpy==1.22.*
elif [ "${{ matrix.numpy-version }}" == "1.26" ]; then
python -m pip install pytest numpy==1.26.*
else
# Don't pip install .[dev] as it would pull in the whole torch cuda stack
python -m pip install \
array-api-strict \
dask[array] \
jax[cpu] \
numpy \
pytest \
sparse \
ndonnx \
python -m -pip install torch --index-url https://download.pytorch.org/whl/cpu
fi
- name: Test it installs
run: python -m pip install .
- name: Run Tests
run: pytest -v