Skip to content

Commit 183ab88

Browse files
committed
Revert "run make check-before-commit without error"
This reverts commit 8129ff4.
1 parent 834df60 commit 183ab88

File tree

134 files changed

+340
-541
lines changed

Some content is hidden

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

134 files changed

+340
-541
lines changed

nipype/algorithms/tests/test_auto_AddCSVRow.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,7 @@
66
def test_AddCSVRow_inputs():
77
input_map = dict(
88
_outputs=dict(usedefault=True, ),
9-
in_file=dict(
10-
extensions=None,
11-
mandatory=True,
12-
),
9+
in_file=dict(mandatory=True, ),
1310
)
1411
inputs = AddCSVRow.input_spec()
1512

nipype/algorithms/tests/test_auto_Gunzip.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,11 @@
44

55

66
def test_Gunzip_inputs():
7-
input_map = dict(in_file=dict(
8-
extensions=None,
9-
mandatory=True,
10-
), )
7+
input_map = dict(
8+
in_file=dict(
9+
extensions=None,
10+
mandatory=True,
11+
), )
1112
inputs = Gunzip.input_spec()
1213

1314
for key, metadata in list(input_map.items()):

nipype/algorithms/tests/test_auto_NonSteadyStateDetector.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,11 @@
44

55

66
def test_NonSteadyStateDetector_inputs():
7-
input_map = dict(in_file=dict(
8-
extensions=None,
9-
mandatory=True,
10-
), )
7+
input_map = dict(
8+
in_file=dict(
9+
extensions=None,
10+
mandatory=True,
11+
), )
1112
inputs = NonSteadyStateDetector.input_spec()
1213

1314
for key, metadata in list(input_map.items()):

nipype/interfaces/afni/tests/test_auto_Allineate.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@ def test_Allineate_inputs():
8686
),
8787
out_weight_file=dict(
8888
argstr='-wtprefix %s',
89-
extensions=None,
9089
xor=['allcostx'],
9190
),
9291
outputtype=dict(),

nipype/interfaces/afni/tests/test_auto_Cat.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,10 @@ def test_Cat_inputs():
2121
usedefault=True,
2222
),
2323
omitconst=dict(argstr='-nonconst', ),
24-
out_cint=dict(xor=[
25-
'out_format', 'out_nice', 'out_double', 'out_fint', 'out_int'
26-
], ),
24+
out_cint=dict(
25+
xor=[
26+
'out_format', 'out_nice', 'out_double', 'out_fint', 'out_int'
27+
], ),
2728
out_double=dict(
2829
argstr='-d',
2930
xor=['out_format', 'out_nice', 'out_int', 'out_fint', 'out_cint'],

nipype/interfaces/afni/tests/test_auto_ClipLevel.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ def test_ClipLevel_inputs():
1717
),
1818
grad=dict(
1919
argstr='-grad %s',
20-
extensions=None,
2120
position=3,
2221
xor='doall',
2322
),

nipype/interfaces/afni/tests/test_auto_LocalBistat.py

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,7 @@ def test_LocalBistat_inputs():
2626
mandatory=True,
2727
position=-1,
2828
),
29-
mask_file=dict(
30-
argstr='-mask %s',
31-
extensions=None,
32-
),
29+
mask_file=dict(argstr='-mask %s', ),
3330
neighborhood=dict(
3431
argstr="-nbhd '%s(%s)'",
3532
mandatory=True,
@@ -40,7 +37,6 @@ def test_LocalBistat_inputs():
4037
),
4138
out_file=dict(
4239
argstr='-prefix %s',
43-
extensions=None,
4440
keep_extension=True,
4541
name_source='in_file1',
4642
name_template='%s_bistat',
@@ -53,7 +49,6 @@ def test_LocalBistat_inputs():
5349
),
5450
weight_file=dict(
5551
argstr='-weight %s',
56-
extensions=None,
5752
xor=['automask'],
5853
),
5954
)

nipype/interfaces/afni/tests/test_auto_Localstat.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,7 @@ def test_Localstat_inputs():
2121
mandatory=True,
2222
position=-1,
2323
),
24-
mask_file=dict(
25-
argstr='-mask %s',
26-
extensions=None,
27-
),
24+
mask_file=dict(argstr='-mask %s', ),
2825
neighborhood=dict(
2926
argstr="-nbhd '%s(%s)'",
3027
mandatory=True,
@@ -36,7 +33,6 @@ def test_Localstat_inputs():
3633
),
3734
out_file=dict(
3835
argstr='-prefix %s',
39-
extensions=None,
4036
keep_extension=True,
4137
name_source='in_file',
4238
name_template='%s_localstat',

nipype/interfaces/afni/tests/test_auto_NwarpApply.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,7 @@ def test_NwarpApply_inputs():
2020
usedefault=True,
2121
),
2222
inv_warp=dict(argstr='-iwarp', ),
23-
master=dict(
24-
argstr='-master %s',
25-
extensions=None,
26-
),
23+
master=dict(argstr='-master %s', ),
2724
out_file=dict(
2825
argstr='-prefix %s',
2926
extensions=None,

nipype/interfaces/afni/tests/test_auto_OneDToolPy.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ def test_OneDToolPy_inputs():
3030
show_censor_count=dict(argstr='-show_censor_count', ),
3131
show_cormat_warnings=dict(
3232
argstr='-show_cormat_warnings |& tee %s',
33-
extensions=None,
3433
position=-1,
3534
xor=['out_file'],
3635
),

0 commit comments

Comments
 (0)