Closed lkeegan closed 9 months ago
Currently we compare floats directly in some of out tests:
https://sonarcloud.io/project/issues?cleanCodeAttributeCategories=INTENTIONAL&resolved=false&softwareQualities=RELIABILITY&id=ssciwr_vstt
Would be better to use e.g. a == pytest.approx(b) in these cases
a == pytest.approx(b)
resolved by #266
Currently we compare floats directly in some of out tests:
https://sonarcloud.io/project/issues?cleanCodeAttributeCategories=INTENTIONAL&resolved=false&softwareQualities=RELIABILITY&id=ssciwr_vstt
Would be better to use e.g.
a == pytest.approx(b)
in these cases