mirror of
https://github.com/p2p-ld/nwb-linkml.git
synced 2024-11-10 00:34:29 +00:00
16 lines
366 B
Python
16 lines
366 B
Python
import pdb
|
|
|
|
import pytest
|
|
from pathlib import Path
|
|
from nwb_linkml.translate import generate_from_nwbfile
|
|
|
|
def test_generate_pydantic():
|
|
# pass until we rig up smaller test data
|
|
pass
|
|
|
|
#NWBFILE = Path('/Users/jonny/Dropbox/lab/p2p_ld/data/nwb/sub-738651046_ses-760693773.nwb')
|
|
|
|
#pydantic_module = generate_from_nwbfile(NWBFILE)
|
|
|
|
#pdb.set_trace()
|
|
|