summaryrefslogtreecommitdiff
path: root/test/test_utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_utils.py')
-rw-r--r--test/test_utils.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/test_utils.py b/test/test_utils.py
index 5ad167b..3cfd295 100644
--- a/test/test_utils.py
+++ b/test/test_utils.py
@@ -67,7 +67,9 @@ def test_tic_toc():
t2 = ot.toq()
# test timing
- np.testing.assert_allclose(0.1, t, rtol=1e-1, atol=1e-1)
+ # np.testing.assert_allclose(0.1, t, rtol=1e-1, atol=1e-1)
+ # very slow macos github action equality not possible
+ assert t > 0.09
# test toc vs toq
np.testing.assert_allclose(t, t2, rtol=1e-1, atol=1e-1)