We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d8e7b2d commit 6151f98Copy full SHA for 6151f98
1 file changed
.github/workflows/test.yml
@@ -18,6 +18,12 @@ jobs:
18
uses: actions/setup-python@v6
19
with:
20
python-version: ${{ matrix.python-version }}
21
+ - name: Get the skips file
22
+ run: |
23
+ pushd /tmp
24
+ git clone -d 1 git@github.com:data-apis/array-api-strict.git
25
+ ls -l /tmp/array_api_strict
26
+ popd
27
- name: Install dependencies
28
run: |
29
python -m pip install --upgrade pip
@@ -28,6 +34,6 @@ jobs:
34
ARRAY_API_TESTS_MODULE: array_api_strict
35
ARRAY_API_STRICT_API_VERSION: 2024.12
30
36
31
- pytest -v -rxXfE --skips-file array-api-strict-skips.txt array_api_tests/
37
+ pytest -v -rxXfE --skips-file /tmp/array_api_strict/array-api-strict-xfails.txt array_api_tests/
32
38
# We also have internal tests that isn't really necessary for adopters
33
39
pytest -v -rxXfE meta_tests/
0 commit comments