From 08bea07834f9f808a1305c12e57a4b7c94d40439 Mon Sep 17 00:00:00 2001 From: Evan Bolyen Date: Wed, 27 Oct 2021 14:12:24 -0700 Subject: [PATCH] these GHA machines really hate math --- skbio/stats/tests/test_composition.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/skbio/stats/tests/test_composition.py b/skbio/stats/tests/test_composition.py index f527c4722..e1114ccfd 100644 --- a/skbio/stats/tests/test_composition.py +++ b/skbio/stats/tests/test_composition.py @@ -256,7 +256,8 @@ def test_clr(self): def test_clr_inv(self): npt.assert_allclose(clr_inv(self.rdata1), self.ortho1) - npt.assert_allclose(clr(clr_inv(self.rdata1)), self.rdata1, rtol=1e-4) + npt.assert_allclose(clr(clr_inv(self.rdata1)), self.rdata1, + rtol=1e-4, atol=1e-5) # make sure that inplace modification is not occurring clr_inv(self.rdata1)