Open javierggt opened 4 years ago
in test_maude_decom.py line 145 we have
assert np.all(table == table2)
In my local copy I updated numpy, so I have version 1.18.5 instead of 1.12.1. That assertion then fails. I guess it has something to do with the fact that there is a mask. If I replace that line with
columns = list(table.colnames) columns.remove('IMG') assert np.all(table['IMG'] == table2['IMG']) assert np.all(table[columns] == table2[columns])
then the assertions are ok. Any idea what's going on?
in test_maude_decom.py line 145 we have
In my local copy I updated numpy, so I have version 1.18.5 instead of 1.12.1. That assertion then fails. I guess it has something to do with the fact that there is a mask. If I replace that line with
then the assertions are ok. Any idea what's going on?