Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/array-api-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,19 @@ name: Array API Tests
on: [push, pull_request]

env:
PYTEST_ARGS: "-v -rxXfE --ci --hypothesis-disable-deadline --max-examples 200"
API_VERSIONS: "2022.12 2023.12 2024.12"
PYTEST_ARGS: "-v -rxXfE --hypothesis-disable-deadline --max-examples 200"
API_VERSIONS: "2023.12 2024.12"

jobs:
array-api-tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12']
python-version: ['3.10', '3.11', '3.12', '3.13']
numpy-version: ['1.26', 'dev']
exclude:
- python-version: '3.8'
numpy-version: 'dev'
- python-version: '3.13'
numpy-version: '1.26'

steps:
- name: Checkout array-api-strict
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12']
python-version: ['3.10', '3.11', '3.12', '3.13']
numpy-version: ['1.26', 'dev']
exclude:
- python-version: '3.8'
numpy-version: 'dev'
- python-version: '3.13'
numpy-version: '1.26'
fail-fast: true
steps:
- uses: actions/checkout@v4
Expand Down
3 changes: 3 additions & 0 deletions array-api-tests-xfails.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,6 @@ array_api_tests/test_special_cases.py::test_iop[__ifloordiv__(isfinite(x1_i) and
# The test suite is incorrectly checking sums that have loss of significance
# (https://github.com/data-apis/array-api-tests/issues/168)
array_api_tests/test_statistical_functions.py::test_sum

array_api_tests/test_special_cases.py::test_nan_propagation[cumulative_prod]

Loading