Skip to content

Commit 073f9fd

Browse files
authored
TEST: Add pandas import check
1 parent 22851bf commit 073f9fd

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Diff for: nipype/pipeline/plugins/tests/test_callback.py

+5
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@
88
import nipype.interfaces.utility as niu
99
import nipype.pipeline.engine as pe
1010

11+
try:
12+
import pandas
13+
has_pandas = True
14+
except ImportError:
15+
has_pandas = False
1116

1217
def func():
1318
return

0 commit comments

Comments
 (0)