File tree Expand file tree Collapse file tree 2 files changed +16
-0
lines changed
Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Original file line number Diff line number Diff line change 88from neo .test .iotest .common_io_test import BaseTestIO
99
1010
11+ try :
12+ import MEArec as mr
13+ HAVE_MEAREC = True
14+ except ImportError :
15+ HAVE_MEAREC = False
16+
17+
18+ @unittest .skipUnless (HAVE_MEAREC , "requires MEArec package" )
1119class TestMEArecIO (BaseTestIO , unittest .TestCase ):
1220 files_to_test = ['mearec_test_10s.h5' ]
1321 files_to_download = ['mearec_test_10s.h5' ]
Original file line number Diff line number Diff line change 1010from neo .test .rawiotest .common_rawio_test import BaseTestRawIO
1111
1212
13+ try :
14+ import MEArec as mr
15+ HAVE_MEAREC = True
16+ except ImportError :
17+ HAVE_MEAREC = False
18+
19+
20+ @unittest .skipUnless (HAVE_MEAREC , "requires MEArec package" )
1321class TestMEArecRawIO (BaseTestRawIO , unittest .TestCase , ):
1422 rawioclass = MEArecRawIO
1523 files_to_download = ['mearec_test_10s.h5' ]
You can’t perform that action at this time.
0 commit comments