Skip to content

Commit 429b32a

Browse files
committed
CI: parametrize over the Array API modules
1 parent 9db56ec commit 429b32a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/test.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ jobs:
99
strategy:
1010
matrix:
1111
python-version: ["3.10", "3.11"]
12+
array-api-module: ["array_api_strict", "numpy", "torch"]
1213

1314
steps:
1415
- name: Checkout array-api-tests
@@ -22,11 +23,11 @@ jobs:
2223
- name: Install dependencies
2324
run: |
2425
python -m pip install --upgrade pip
25-
python -m pip install array-api-strict
26+
python -m pip install ${{ matrix.array-api-module }}
2627
python -m pip install -r requirements.txt
2728
- name: Run the test suite
2829
env:
29-
ARRAY_API_TESTS_MODULE: array_api_strict
30+
ARRAY_API_TESTS_MODULE: ${{ matrix.array-api-module }}
3031
ARRAY_API_STRICT_API_VERSION: 2023.12
3132
run: |
3233
pytest -v -rxXfE --skips-file array-api-strict-skips.txt array_api_tests/

0 commit comments

Comments
 (0)