Skip to content

Commit

Permalink
..
Browse files Browse the repository at this point in the history
  • Loading branch information
dweindl committed Jul 1, 2024
1 parent 4c8319a commit b56235a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions pytest.ini
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ addopts = -vv --strict-markers
filterwarnings =
# warnings are errors
error
# petab
ignore:Using petab.v1.Problem with PEtab2.0 is deprecated:DeprecationWarning
# amici
ignore:Conservation laws for non-constant species in models with RateRules are currently not supported and will be turned off.:UserWarning
ignore:Conservation laws for non-constant species in models with Species-AssignmentRules are currently not supported and will be turned off.:UserWarning
Expand Down
4 changes: 2 additions & 2 deletions python/tests/splines_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import amici
import numpy as np
import pandas as pd
import petab
import petab.v1 as petab
import sympy as sp
from amici.gradient_check import _check_results
from amici.petab.petab_import import import_petab_problem
Expand All @@ -31,7 +31,7 @@
)
from amici.splines import AbstractSpline, CubicHermiteSpline, UniformGrid
from amici.testing import TemporaryDirectoryWinSafe as TemporaryDirectory
from petab.models.sbml_model import SbmlModel
from petab.v1.models.sbml_model import SbmlModel


def evaluate_spline(
Expand Down
2 changes: 1 addition & 1 deletion tests/benchmark-models/test_petab_benchmark.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import amici
import numpy as np
import pandas as pd
import petab
import petab.v1 as petab
import pytest
from amici.petab.petab_import import import_petab_problem

Expand Down

0 comments on commit b56235a

Please sign in to comment.