MIPLabCH / nigsp

NiGSP: a module for graph signal processing on neuroimaging data
https://nigsp.readthedocs.io/en/latest/
Apache License 2.0
18 stars 12 forks source link

Use assert_allclose from numpy.testing instead of np.allclose in matrix comparison tests #69

Closed mscheltienne closed 1 year ago

mscheltienne commented 1 year ago

assert_allclose has a saner atol=0 and a more informative message on failure than np.allclose.

Change Type

codecov[bot] commented 1 year ago

Codecov Report

Merging #69 (aef8391) into master (8e4fbae) will not change coverage. Report is 1 commits behind head on master. The diff coverage is n/a.

Impacted file tree graph

@@           Coverage Diff           @@
##           master      #69   +/-   ##
=======================================
  Coverage   90.93%   90.93%           
=======================================
  Files          14       14           
  Lines        1235     1235           
=======================================
  Hits         1123     1123           
  Misses        112      112           
smoia commented 1 year ago

LGTM!