Skip to content

Commit a59dab9

Browse files
committed
further filterwarnings
1 parent 03eabfb commit a59dab9

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

tests/v2/test_core.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,9 @@ def test_observable_table_round_trip():
4747
assert observables == observables2
4848

4949

50+
@pytest.mark.filterwarnings(
51+
"ignore:.*Parameter scales are not supported in PEtab v2.*:UserWarning"
52+
)
5053
def test_condition_table_round_trip():
5154
with tempfile.TemporaryDirectory() as tmp_dir:
5255
petab1to2(example_dir_fujita / "Fujita.yaml", tmp_dir)
@@ -59,6 +62,9 @@ def test_condition_table_round_trip():
5962
assert conditions == conditions2
6063

6164

65+
@pytest.mark.filterwarnings(
66+
"ignore:.*Parameter scales are not supported in PEtab v2.*:UserWarning"
67+
)
6268
def test_assert_valid():
6369
problem = petab1to2(example_dir_fujita / "Fujita.yaml")
6470
problem.assert_valid()

0 commit comments

Comments
 (0)