Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions python/tests/test_bngl.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ def test_compare_to_pysb_simulation(example):
with suppress(ValueError):
RESERVED_SYMBOLS.remove("NULL")

atol = 1e-8
rtol = 1e-8
atol = 1e-12
rtol = 1e-10

model_file = os.path.join(
os.path.dirname(__file__),
Expand Down
4 changes: 2 additions & 2 deletions python/tests/test_pysb.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,8 +149,8 @@ def test_compare_to_sbml_import(
@skip_on_valgrind
@pytest.mark.parametrize("example", pysb_models + custom_models)
def test_compare_to_pysb_simulation(example):
atol = 1e-8
rtol = 1e-8
atol = 1e-12
rtol = 1e-10

with amici.add_path(os.path.dirname(pysb.examples.__file__)):
with amici.add_path(
Expand Down
Loading