Skip to content

Commit

Permalink
Skip a few more tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kratman committed Dec 26, 2024
1 parent e32477d commit 3e7b90c
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions tests/unit/test_solvers/test_idaklu_jax.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,10 @@ def test_f_scalar(self, output_variables, idaklu_jax_solver, f, wrapper):
out, np.array([sim[outvar](t_eval[k]) for outvar in output_variables]).T
)

@pytest.mark.skipif(
sys.platform.lower().startswith("win"),
reason="IDAKLU-Jax is experimental on Windows",
)
@pytest.mark.parametrize(
"output_variables,idaklu_jax_solver,f,wrapper", make_test_cases()
)
Expand Down Expand Up @@ -284,6 +288,10 @@ def test_getvars_vector_array(
out = idaklu_jax_solver.get_vars(array, output_variables)
np.testing.assert_allclose(out, array)

@pytest.mark.skipif(
sys.platform.lower().startswith("win"),
reason="IDAKLU-Jax is experimental on Windows",
)
@pytest.mark.parametrize(
"output_variables,idaklu_jax_solver,f,wrapper", make_test_cases()
)
Expand Down

0 comments on commit 3e7b90c

Please sign in to comment.