Skip to content

Commit

Permalink
fix warnings; fix CI skip condition
Browse files Browse the repository at this point in the history
  • Loading branch information
dilpath committed Jan 3, 2025
1 parent e32437f commit fa47dbe
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions test/pypesto/test_pypesto.py
Original file line number Diff line number Diff line change
@@ -88,8 +88,10 @@ def test_pypesto(test_case_path_stem):
)

# Get the best model
best_model = petab_select_problem.get_best(
best_model = petab_select.analyze.get_best(
models=pypesto_select_problem.calibrated_models,
criterion=petab_select_problem.criterion,
compare=petab_select_problem.compare,
)

# Load the expected model.
@@ -113,7 +115,7 @@ def get_series(model, dict_attribute) -> pd.Series:


@pytest.mark.skipif(
os.getenv("GITHUB_ACTIONS"),
os.getenv("GITHUB_ACTIONS") == "true",
reason="Too CPU heavy for CI.",
)
def test_famos_cli():

0 comments on commit fa47dbe

Please sign in to comment.