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 91e572c commit 8810ec2
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test_petab_test_suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
run: |
source ./venv/bin/activate \
&& pytest --cov-report=xml:coverage.xml \
--cov=./ python/tests/test_*petab*.py python/tests/petab/
--cov=./ python/tests/test_*petab*.py python/tests/petab_/
# run test models
- name: Run PEtab test suite
Expand Down
2 changes: 2 additions & 0 deletions pytest.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
addopts = -vv --strict-markers

filterwarnings =
# warnings are errors
error
# 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
2 changes: 1 addition & 1 deletion python/sdist/amici/petab/sbml_import.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def import_model_sbml(
:return:
The created :class:`amici.sbml_import.SbmlImporter` instance.
"""
from petab.models.sbml_model import SbmlModel
from petab.v1.models.sbml_model import SbmlModel

set_log_level(logger, verbose)

Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion tests/petab_test_suite/test_petab_suite.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

import amici
import pandas as pd
import petab
import petab.v1 as petab
import petabtests
import pytest
from _pytest.outcomes import Skipped
Expand Down

0 comments on commit 8810ec2

Please sign in to comment.