Skip to content
Snippets Groups Projects
Commit 7e542b22 authored by David Verelst's avatar David Verelst
Browse files

more debugging why test on runner is not passing

parent e64d0076
No related branches found
No related tags found
No related merge requests found
......@@ -118,8 +118,8 @@ class Tests(unittest.TestCase):
for fname in fnames:
fname = pjoin(pdirname(__file__), 'data', fname)
res = results()
df_data, units = res.load_pwr_df(fname, dtype=np.float32)
data = np.loadtxt(fname, dtype=np.float32)
df_data, units = res.load_pwr_df(fname)
data = np.loadtxt(fname)
self.assertEqual(data.shape, df_data.shape)
print(data.dtype)
print(data.values.dtype)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment