Skip to content

Commit 49a2134

Browse files
committed
Make terminal_output not mandatory (since it has a silent default).
1 parent 4bd4ed9 commit 49a2134

File tree

340 files changed

+346
-760
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

340 files changed

+346
-760
lines changed

nipype/algorithms/tests/test_auto_ErrorMap.py

Lines changed: 0 additions & 34 deletions
This file was deleted.

nipype/algorithms/tests/test_auto_Overlap.py

Lines changed: 0 additions & 46 deletions
This file was deleted.

nipype/interfaces/afni/tests/test_auto_AFNICommand.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,7 @@ def test_AFNICommand_inputs():
1616
name_template='%s_afni',
1717
),
1818
outputtype=dict(),
19-
terminal_output=dict(mandatory=True,
20-
nohash=True,
19+
terminal_output=dict(nohash=True,
2120
),
2221
)
2322
inputs = AFNICommand.input_spec()

nipype/interfaces/afni/tests/test_auto_AFNItoNIFTI.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@ def test_AFNItoNIFTI_inputs():
2121
name_template='%s.nii',
2222
),
2323
outputtype=dict(),
24-
terminal_output=dict(mandatory=True,
25-
nohash=True,
24+
terminal_output=dict(nohash=True,
2625
),
2726
)
2827
inputs = AFNItoNIFTI.input_spec()

nipype/interfaces/afni/tests/test_auto_Allineate.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,7 @@ def test_Allineate_inputs():
8383
),
8484
source_mask=dict(argstr='-source_mask %s',
8585
),
86-
terminal_output=dict(mandatory=True,
87-
nohash=True,
86+
terminal_output=dict(nohash=True,
8887
),
8988
two_best=dict(argstr='-twobest %d',
9089
),

nipype/interfaces/afni/tests/test_auto_AutoTcorrelate.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,7 @@ def test_AutoTcorrelate_inputs():
3333
outputtype=dict(),
3434
polort=dict(argstr='-polort %d',
3535
),
36-
terminal_output=dict(mandatory=True,
37-
nohash=True,
36+
terminal_output=dict(nohash=True,
3837
),
3938
)
4039
inputs = AutoTcorrelate.input_spec()

nipype/interfaces/afni/tests/test_auto_Autobox.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,7 @@ def test_Autobox_inputs():
2323
outputtype=dict(),
2424
padding=dict(argstr='-npad %d',
2525
),
26-
terminal_output=dict(mandatory=True,
27-
nohash=True,
26+
terminal_output=dict(nohash=True,
2827
),
2928
)
3029
inputs = Autobox.input_spec()

nipype/interfaces/afni/tests/test_auto_Automask.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,7 @@ def test_Automask_inputs():
3131
name_template='%s_mask',
3232
),
3333
outputtype=dict(),
34-
terminal_output=dict(mandatory=True,
35-
nohash=True,
34+
terminal_output=dict(nohash=True,
3635
),
3736
)
3837
inputs = Automask.input_spec()

nipype/interfaces/afni/tests/test_auto_Bandpass.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,7 @@ def test_Bandpass_inputs():
5454
position=1,
5555
),
5656
outputtype=dict(),
57-
terminal_output=dict(mandatory=True,
58-
nohash=True,
57+
terminal_output=dict(nohash=True,
5958
),
6059
tr=dict(argstr='-dt %f',
6160
),

nipype/interfaces/afni/tests/test_auto_BlurInMask.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,7 @@ def test_BlurInMask_inputs():
3838
outputtype=dict(),
3939
preserve=dict(argstr='-preserve',
4040
),
41-
terminal_output=dict(mandatory=True,
42-
nohash=True,
41+
terminal_output=dict(nohash=True,
4342
),
4443
)
4544
inputs = BlurInMask.input_spec()

0 commit comments

Comments
 (0)