You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@pytest.mark.skipif("not _H5PY_INSTALLED")
def test_io_with_hdf5_auto(self):
ev = EventList(time=self.time, mjdref=54000)
ev.write("ev.hdf5")
ev = ev.read("ev.hdf5") # <----- This fails with 'NoneType' object has no attribute 'lower'
assert np.allclose(ev.time, self.time)
os.remove("ev.hdf5")
PR soon
The text was updated successfully, but these errors were encountered:
MWE adding this test to
tests/test_events.py
:PR soon
The text was updated successfully, but these errors were encountered: