File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -70,8 +70,8 @@ def test_no_et_bare(tmp_path):
70
70
assert next (iter (res .nodes )).result .outputs .out == et
71
71
72
72
73
- @pytest .mark .parametrize ("plugin" , ( "MultiProc" , "LegacyMultiProc" ) )
74
- @pytest .mark .parametrize ("run_without_submitting" , ( True , False ) )
73
+ @pytest .mark .parametrize ("plugin" , [ "MultiProc" , "LegacyMultiProc" ] )
74
+ @pytest .mark .parametrize ("run_without_submitting" , [ True , False ] )
75
75
def test_no_et_multiproc (tmp_path , plugin , run_without_submitting ):
76
76
from unittest .mock import patch
77
77
from nipype .pipeline import engine as pe
Original file line number Diff line number Diff line change 6
6
from ..imagemanip import copy_header
7
7
8
8
9
- @pytest .mark .parametrize ("keep_dtype" , ( True , False ) )
9
+ @pytest .mark .parametrize ("keep_dtype" , [ True , False ] )
10
10
def test_copy_header (tmp_path , keep_dtype ):
11
11
"""Cover copy_header."""
12
12
fname1 = tmp_path / "reference.nii.gz"
You can’t perform that action at this time.
0 commit comments