8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9db56ec commit f742ae2Copy full SHA for f742ae2
.github/workflows/test.yml
@@ -9,6 +9,7 @@ jobs:
9
strategy:
10
matrix:
11
python-version: ["3.10", "3.11"]
12
+ array-api-module: ["array_api_strict", "numpy", "torch"]
13
14
steps:
15
- name: Checkout array-api-tests
@@ -22,11 +23,11 @@ jobs:
22
23
- name: Install dependencies
24
run: |
25
python -m pip install --upgrade pip
- python -m pip install array-api-strict
26
+ python -m pip install ${{ matrix.array-api-module }}
27
python -m pip install -r requirements.txt
28
- name: Run the test suite
29
env:
- ARRAY_API_TESTS_MODULE: array_api_strict
30
+ ARRAY_API_TESTS_MODULE: ${ {matrix.array-api-module }}
31
ARRAY_API_STRICT_API_VERSION: 2023.12
32
33
pytest -v -rxXfE --skips-file array-api-strict-skips.txt array_api_tests/
0 commit comments