diff --git a/.github/workflows/array-api-skips.txt b/.github/workflows/array-api-skips.txt index 4ad6df22b259..ec7f44e05be3 100644 --- a/.github/workflows/array-api-skips.txt +++ b/.github/workflows/array-api-skips.txt @@ -6,3 +6,9 @@ array_api_tests/test_operators_and_elementwise_functions.py::test_clip # unexpected result is returned - unmute when dpctl-1986 is resolved array_api_tests/test_operators_and_elementwise_functions.py::test_asin array_api_tests/test_operators_and_elementwise_functions.py::test_asinh + +# advanced indexing relating issues (waiting a fix from dpctl) +array_api_tests/test_array_object.py::test_getitem_arrays_and_ints_1[1] +array_api_tests/test_array_object.py::test_getitem_arrays_and_ints_1[None] +array_api_tests/test_array_object.py::test_getitem_arrays_and_ints_2[1] +array_api_tests/test_array_object.py::test_getitem_arrays_and_ints_2[None] diff --git a/.github/workflows/conda-package.yml b/.github/workflows/conda-package.yml index 18643df5cf8f..62a0e4390d73 100644 --- a/.github/workflows/conda-package.yml +++ b/.github/workflows/conda-package.yml @@ -625,6 +625,7 @@ jobs: python -m pytest --json-report --json-report-file=${{ env.json-report-file }} --disable-deadline --skips-file ${{ env.array-api-skips-file }} array_api_tests || true env: ARRAY_API_TESTS_MODULE: 'dpnp' + ARRAY_API_TESTS_VERSION: '2024.12' SYCL_CACHE_PERSISTENT: 1 working-directory: ${{ env.array-api-tests-path }}