From 51bd18cac0314d6dbd3c8b39aee660641a4d4d36 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabian=20Fr=C3=B6hlich?= Date: Sun, 27 Oct 2024 11:21:47 +0000 Subject: [PATCH] exclude more models --- tests/benchmark-models/test_petab_benchmark.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/tests/benchmark-models/test_petab_benchmark.py b/tests/benchmark-models/test_petab_benchmark.py index 0d991b50d8..58586e3329 100644 --- a/tests/benchmark-models/test_petab_benchmark.py +++ b/tests/benchmark-models/test_petab_benchmark.py @@ -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()