This commit is contained in:
sneakers-the-rat 2024-09-11 21:17:46 -07:00
parent 95fbce1c4a
commit 0eeea4c517
Signed by untrusted user who does not match committer: jonny
GPG key ID: 6DCB96EF1E4D232D

View file

@ -2,16 +2,18 @@
Placeholder test module to test reading from pynwb-generated NWB file Placeholder test module to test reading from pynwb-generated NWB file
""" """
import pytest
from datetime import datetime from datetime import datetime
from numpydantic.interface.hdf5 import H5Proxy
from nwb_linkml.io.hdf5 import HDF5IO
from nwb_models.models import NWBFile
from pydantic import BaseModel
import numpy as np import numpy as np
import pandas as pd import pandas as pd
import pytest
from numpydantic.interface.hdf5 import H5Proxy
from pydantic import BaseModel
from pynwb import NWBHDF5IO
from pynwb import NWBFile as PyNWBFile
from pynwb import NWBHDF5IO, NWBFile as PyNWBFile from nwb_linkml.io.hdf5 import HDF5IO
from nwb_models.models import NWBFile
def test_read_from_nwbfile(nwb_file): def test_read_from_nwbfile(nwb_file):