Skip to content

Commit 9096a5b

Browse files
effigiesshnizzedy
authored andcommitted
TEST: Add pandas import check
1 parent a80923f commit 9096a5b

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

nipype/pipeline/plugins/tests/test_callback.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@
77
import nipype.interfaces.utility as niu
88
import nipype.pipeline.engine as pe
99

10+
try:
11+
import pandas
12+
has_pandas = True
13+
except ImportError:
14+
has_pandas = False
1015

1116
def func():
1217
return

0 commit comments

Comments
 (0)