From da174cf8ea00f3335af9d67200ae9ab6f0977b79 Mon Sep 17 00:00:00 2001 From: Tom White Date: Sun, 27 Oct 2024 09:36:46 +0000 Subject: [PATCH] Exclude std and var from JAX tests --- .github/workflows/jax-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/jax-tests.yml b/.github/workflows/jax-tests.yml index 01de4044..43b9229a 100644 --- a/.github/workflows/jax-tests.yml +++ b/.github/workflows/jax-tests.yml @@ -44,7 +44,7 @@ jobs: - name: Run tests run: | # exclude tests that rely on structured types since JAX doesn't support these - pytest -k "not argmax and not argmin and not mean and not apply_reduction and not broadcast_trick and not groupby and not object_dtype" + pytest -k "not argmax and not argmin and not mean and not std and not var and not apply_reduction and not broadcast_trick and not groupby and not object_dtype" env: CUBED_BACKEND_ARRAY_API_MODULE: jax.numpy JAX_ENABLE_X64: True