Skip to content

Commit 5ec56d6

Browse files
committed
Merge pull request #1070 from chrisfilo/enh/terminal_output
Make terminal_output not mandatory (since it has a silent default).
2 parents 4bd4ed9 + 9dd5002 commit 5ec56d6

File tree

341 files changed

+347
-761
lines changed

Some content is hidden

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

341 files changed

+347
-761
lines changed

CHANGES

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Next release
22
============
3-
3+
* FIX: terminal_output is not mandatory anymore (https://github.com/nipy/nipype/pull/1070)
44
* FIX: Fixed Camino output naming (https://github.com/nipy/nipype/pull/1061)
55
* ENH: Add the average distance to ErrorMap (https://github.com/nipy/nipype/pull/1039)
66
* ENH: Inputs with name_source can be now chained in cascade (https://github.com/nipy/nipype/pull/938)

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
),

0 commit comments

Comments
 (0)