Skip to content

Commit

Permalink
exclude more models
Browse files Browse the repository at this point in the history
  • Loading branch information
FFroehlich committed Oct 27, 2024
1 parent 02a1272 commit 51bd18c
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion tests/benchmark-models/test_petab_benchmark.py
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,14 @@ def benchmark_problem(request):
def test_jax_llh(benchmark_problem):
problem_id, petab_problem, amici_model = benchmark_problem

if problem_id == "Smith_BMCSystBiol2013":
if problem_id in (
"Bachmann_MSB2011",
"Isensee_JCB2018",
"Lucarelli_CellSystems2018",
"SalazarCavazos_MBoC2020",
"Smith_BMCSystBiol2013",
):
# confirmed to work 27/10/2024 but experienced high local runtime (M2 MBA, >30s)
pytest.skip("Excluded from JAX check due to excessive runtime")

amici_solver = amici_model.getSolver()
Expand Down

0 comments on commit 51bd18c

Please sign in to comment.