File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
fmriprep/workflows/bold/tests Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -35,13 +35,15 @@ def bids_root(tmp_path_factory):
35
35
@pytest .mark .parametrize ("fieldmap_id" , ["phasediff" , None ])
36
36
@pytest .mark .parametrize ("freesurfer" , [False , True ])
37
37
@pytest .mark .parametrize ("level" , ["minimal" , "resampling" , "full" ])
38
+ @pytest .mark .parametrize ("bold2anat_init" , ["t1w" , "t2w" ])
38
39
def test_bold_wf (
39
40
bids_root : Path ,
40
41
tmp_path : Path ,
41
42
task : str ,
42
43
fieldmap_id : str | None ,
43
44
freesurfer : bool ,
44
45
level : str ,
46
+ bold2anat_init : str ,
45
47
):
46
48
"""Test as many combinations of precomputed files and input
47
49
configurations as possible."""
@@ -65,6 +67,7 @@ def test_bold_wf(
65
67
img .to_filename (path )
66
68
67
69
with mock_config (bids_dir = bids_root ):
70
+ config .workflow .bold2anat_init = bold2anat_init
68
71
config .workflow .level = level
69
72
config .workflow .run_reconall = freesurfer
70
73
wf = init_bold_wf (
You can’t perform that action at this time.
0 commit comments