File tree 1 file changed +12
-3
lines changed
1 file changed +12
-3
lines changed Original file line number Diff line number Diff line change 8
8
runs-on : ubuntu-latest
9
9
strategy :
10
10
matrix :
11
- python-version : ["3.10", "3.11"]
11
+ python-version : ["3.11"]
12
+ array-api-module : ["array_api_strict", "numpy", "torch", "jax.numpy"]
13
+ fail-fast : false
12
14
13
15
steps :
14
16
- name : Checkout array-api-tests
@@ -22,11 +24,18 @@ jobs:
22
24
- name : Install dependencies
23
25
run : |
24
26
python -m pip install --upgrade pip
25
- python -m pip install array-api-strict
27
+ if [ ${{ matrix.array-api-module }} = 'torch' ]
28
+ then
29
+ python -m pip install torch --index-url https://download.pytorch.org/whl/cpu
30
+ elif [ ${{ matrix.array-api-module }} = 'jax.numpy' ]
31
+ python -m pip install "jax[cpu]"
32
+ else
33
+ python -m pip install ${{ matrix.array-api-module }}
34
+ fi
26
35
python -m pip install -r requirements.txt
27
36
- name : Run the test suite
28
37
env :
29
- ARRAY_API_TESTS_MODULE : array_api_strict
38
+ ARRAY_API_TESTS_MODULE : ${{ matrix.array-api-module }}
30
39
ARRAY_API_STRICT_API_VERSION : 2023.12
31
40
run : |
32
41
pytest -v -rxXfE --skips-file array-api-strict-skips.txt array_api_tests/
You can’t perform that action at this time.
0 commit comments