Skip to content

Commit 165779a

Browse files
committed
Fix missing skip condition
1 parent b9d8a9b commit 165779a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/array-api-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
python -m pip install '${{ inputs.package-name }} ${{ inputs.package-version }}' ${{ inputs.extra-requires }}
6565
python -m pip install -r ${GITHUB_WORKSPACE}/array-api-tests/requirements.txt
6666
- name: Run the array API testsuite (${{ inputs.package-name }})
67-
if: "! (matrix.python-version == '3.11' && inputs.package-name == 'numpy' && contains(inputs.package-version, '1.21'))"
67+
if: "! ((matrix.python-version == '3.11' && inputs.package-name == 'numpy' && contains(inputs.package-version, '1.21')) || (matrix.python-version == '3.8' && inputs.package-name == 'numpy' && contains(inputs.xfails-file-extra, 'dev')))"
6868
env:
6969
ARRAY_API_TESTS_MODULE: array_api_compat.${{ inputs.module-name || inputs.package-name }}
7070
# This enables the NEP 50 type promotion behavior (without it a lot of

0 commit comments

Comments
 (0)