We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b9d8a9b commit 165779aCopy full SHA for 165779a
.github/workflows/array-api-tests.yml
@@ -64,7 +64,7 @@ jobs:
64
python -m pip install '${{ inputs.package-name }} ${{ inputs.package-version }}' ${{ inputs.extra-requires }}
65
python -m pip install -r ${GITHUB_WORKSPACE}/array-api-tests/requirements.txt
66
- 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'))"
+ 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')))"
68
env:
69
ARRAY_API_TESTS_MODULE: array_api_compat.${{ inputs.module-name || inputs.package-name }}
70
# This enables the NEP 50 type promotion behavior (without it a lot of
0 commit comments