Skip to content

Commit de6657e

Browse files
effigiesshnizzedy
authored andcommitted
STY/TEST: black and skipif syntax
1 parent b1690d5 commit de6657e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

nipype/pipeline/plugins/tests/test_callback.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,12 @@
99

1010
try:
1111
import pandas
12+
1213
has_pandas = True
1314
except ImportError:
1415
has_pandas = False
1516

17+
1618
def func():
1719
return
1820

@@ -68,7 +70,7 @@ def test_callback_exception(tmpdir, plugin, stop_on_first_crash):
6870

6971

7072
@pytest.mark.parametrize("plugin", ["Linear", "MultiProc", "LegacyMultiProc"])
71-
@pytest.mark.skipif(not has_pandas, "Test requires pandas")
73+
@pytest.mark.skipif(not has_pandas, reason="Test requires pandas")
7274
def test_callback_gantt(tmpdir, plugin):
7375
import logging
7476

0 commit comments

Comments
 (0)