diff --git a/doc/example/conversion_reaction/PEtabJl_module.jl b/doc/example/conversion_reaction/PEtabJl_module.jl index f1bac1935..d29007880 100644 --- a/doc/example/conversion_reaction/PEtabJl_module.jl +++ b/doc/example/conversion_reaction/PEtabJl_module.jl @@ -10,7 +10,7 @@ petabModel = PEtabModel(pathYaml, verbose=true) # A full list of options for PEtabODEProblem can be found at https://sebapersson.github.io/PEtab.jl/stable/API_choosen/ petabProblem = PEtabODEProblem( petabModel, - ode_solver=ODESolver(Rodas5P(), abstol=1e-08, reltol=1e-08, maxiters=Int64(1e4)), + odesolver=ODESolver(Rodas5P(), abstol=1e-08, reltol=1e-08, maxiters=Int64(1e4)), gradient_method=:ForwardDiff, hessian_method=:ForwardDiff, sparse_jacobian=nothing, diff --git a/test/base/test_roadrunner.py b/test/base/test_roadrunner.py index a7054a769..58d0cc844 100644 --- a/test/base/test_roadrunner.py +++ b/test/base/test_roadrunner.py @@ -45,8 +45,6 @@ def test_petab_case(case, model_type, version): def _execute_case_rr(case, model_type, version): """Run a single PEtab test suite case""" case = petabtests.test_id_str(case) - if case == "0018" and model_type == "sbml" and version == "v1.0.0": - pytest.skip("https://github.com/ICB-DCM/pyPESTO/issues/1597") logger.info(f"Case {case}") # case folder diff --git a/test/petab/test_petabSimulator.py b/test/petab/test_petabSimulator.py index ea2638533..65db1aa83 100644 --- a/test/petab/test_petabSimulator.py +++ b/test/petab/test_petabSimulator.py @@ -22,10 +22,6 @@ ) def test_petab_case(case, model_type, version): """Wrapper for _execute_case for handling test outcomes""" - # FIXME https://github.com/ICB-DCM/pyPESTO/issues/1583 - if model_type == "sbml" and version == "v1.0.0" and case == "0020": - pytest.xfail(reason="https://github.com/ICB-DCM/pyPESTO/issues/1583") - try: _execute_case(case, model_type, version) except Exception as e: