Skip to content

Commit

Permalink
these GHA machines really hate math
Browse files Browse the repository at this point in the history
  • Loading branch information
ebolyen committed Oct 27, 2021
1 parent e4097e8 commit 08bea07
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion skbio/stats/tests/test_composition.py
Expand Up @@ -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)
Expand Down

0 comments on commit 08bea07

Please sign in to comment.