Skip to content

Automated Code Change #22250

Automated Code Change

Automated Code Change #22250

Workflow file for this run

name: JAX Array API
on:
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
permissions: {}
jobs:
build:
runs-on: linux-x86-n2-16
container: us-docker.pkg.dev/ml-oss-artifacts-published/ml-public-container/ml-build:latest
strategy:
matrix:
python-version: [3.11]
env:
PYTHON: "python${{ matrix.python-version }}"
steps:
- name: Checkout jax
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
persist-credentials: false
- name: Checkout array-api-tests
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
repository: data-apis/array-api-tests
# TODO(jakevdp) update this to a stable release/tag when available.
ref: 'c847143beb8d769bde5dbcc063fe19ed7acc2f9b' # Latest commit as of 2025-05-12
submodules: 'true'
path: 'array-api-tests'
persist-credentials: false
- name: Install dependencies
run: |
$PYTHON -m uv pip install --system .[ci] pytest-xdist -r array-api-tests/requirements.txt
- name: Run the test suite
env:
ARRAY_API_TESTS_MODULE: jax.numpy
JAX_ENABLE_X64: 'true'
run: |
cd ${GITHUB_WORKSPACE}/array-api-tests
$PYTHON -m pytest -n auto array_api_tests --derandomize --disable-deadline --skips-file ${GITHUB_WORKSPACE}/tests/array_api_skips.txt