We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03eabfb commit a59dab9Copy full SHA for a59dab9
1 file changed
tests/v2/test_core.py
@@ -47,6 +47,9 @@ def test_observable_table_round_trip():
47
assert observables == observables2
48
49
50
+@pytest.mark.filterwarnings(
51
+ "ignore:.*Parameter scales are not supported in PEtab v2.*:UserWarning"
52
+)
53
def test_condition_table_round_trip():
54
with tempfile.TemporaryDirectory() as tmp_dir:
55
petab1to2(example_dir_fujita / "Fujita.yaml", tmp_dir)
@@ -59,6 +62,9 @@ def test_condition_table_round_trip():
59
62
assert conditions == conditions2
60
63
61
64
65
66
67
68
def test_assert_valid():
69
problem = petab1to2(example_dir_fujita / "Fujita.yaml")
70
problem.assert_valid()
0 commit comments