We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d0dd5b commit 33241c7Copy full SHA for 33241c7
python/tests/test_bngl.py
@@ -49,8 +49,8 @@ def test_compare_to_pysb_simulation(example):
49
with suppress(ValueError):
50
RESERVED_SYMBOLS.remove("NULL")
51
52
- atol = 1e-8
53
- rtol = 1e-8
+ atol = 1e-12
+ rtol = 1e-10
54
55
model_file = os.path.join(
56
os.path.dirname(__file__),
python/tests/test_pysb.py
@@ -149,8 +149,8 @@ def test_compare_to_sbml_import(
149
@skip_on_valgrind
150
@pytest.mark.parametrize("example", pysb_models + custom_models)
151
def test_compare_to_pysb_simulation(example):
152
153
154
155
with amici.add_path(os.path.dirname(pysb.examples.__file__)):
156
with amici.add_path(
0 commit comments