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

nipype/interfaces/afni/tests/test_auto_Qwarp.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -125,10 +125,7 @@ def test_Qwarp_inputs():
125125
name_source=['in_file'],
126126
name_template='ppp_%s',
127127
),
128-
out_weight_file=dict(
129-
argstr='-wtprefix %s',
130-
extensions=None,
131-
),
128+
out_weight_file=dict(argstr='-wtprefix %s', ),
132129
outputtype=dict(),
133130
overwrite=dict(argstr='-overwrite', ),
134131
pblur=dict(argstr='-pblur %s', ),

nipype/interfaces/afni/tests/test_auto_QwarpPlusMinus.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -125,10 +125,7 @@ def test_QwarpPlusMinus_inputs():
125125
position=0,
126126
usedefault=True,
127127
),
128-
out_weight_file=dict(
129-
argstr='-wtprefix %s',
130-
extensions=None,
131-
),
128+
out_weight_file=dict(argstr='-wtprefix %s', ),
132129
outputtype=dict(),
133130
overwrite=dict(argstr='-overwrite', ),
134131
pblur=dict(argstr='-pblur %s', ),

nipype/interfaces/afni/tests/test_auto_ROIStats.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,7 @@ def test_ROIStats_inputs():
4949
position=-1,
5050
),
5151
quiet=dict(argstr='-quiet', ),
52-
roisel=dict(
53-
argstr='-roisel %s',
54-
extensions=None,
55-
),
52+
roisel=dict(argstr='-roisel %s', ),
5653
stat=dict(argstr='%s...', ),
5754
zerofill=dict(
5855
argstr='-zerofill %s',

nipype/interfaces/afni/tests/test_auto_ReHo.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,17 +25,13 @@ def test_ReHo_inputs():
2525
argstr='-in_rois %s',
2626
extensions=None,
2727
),
28-
mask_file=dict(
29-
argstr='-mask %s',
30-
extensions=None,
31-
),
28+
mask_file=dict(argstr='-mask %s', ),
3229
neighborhood=dict(
3330
argstr='-nneigh %s',
3431
xor=['sphere', 'ellipsoid'],
3532
),
3633
out_file=dict(
3734
argstr='-prefix %s',
38-
extensions=None,
3935
keep_extension=True,
4036
name_source='in_file',
4137
name_template='%s_reho',

nipype/interfaces/afni/tests/test_auto_Remlfit.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@ def test_Remlfit_inputs():
5858
),
5959
matim=dict(
6060
argstr='-matim %s',
61-
extensions=None,
6261
xor=['matrix'],
6362
),
6463
matrix=dict(

nipype/interfaces/afni/tests/test_auto_Resample.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,7 @@ def test_Resample_inputs():
1717
mandatory=True,
1818
position=-1,
1919
),
20-
master=dict(
21-
argstr='-master %s',
22-
extensions=None,
23-
),
20+
master=dict(argstr='-master %s', ),
2421
num_threads=dict(
2522
nohash=True,
2623
usedefault=True,

nipype/interfaces/afni/tests/test_auto_TCorrMap.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -93,10 +93,7 @@ def test_TCorrMap_inputs():
9393
name_source='in_file',
9494
suffix='_qmean',
9595
),
96-
regress_out_timeseries=dict(
97-
argstr='-ort %s',
98-
extensions=None,
99-
),
96+
regress_out_timeseries=dict(argstr='-ort %s', ),
10097
seeds=dict(
10198
argstr='-seed %s',
10299
extensions=None,

nipype/interfaces/afni/tests/test_auto_Zeropad.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@ def test_Zeropad_inputs():
5555
),
5656
master=dict(
5757
argstr='-master %s',
58-
extensions=None,
5958
xor=['I', 'S', 'A', 'P', 'L', 'R', 'z', 'RL', 'AP', 'IS', 'mm'],
6059
),
6160
mm=dict(

nipype/interfaces/ants/tests/test_auto_ANTS.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ def test_ANTS_inputs():
5757
regularization=dict(argstr='%s', ),
5858
regularization_deformation_field_sigma=dict(
5959
requires=['regularization'], ),
60-
regularization_gradient_field_sigma=dict(requires=['regularization'
61-
], ),
60+
regularization_gradient_field_sigma=dict(
61+
requires=['regularization'], ),
6262
smoothing_sigmas=dict(
6363
argstr='--gaussian-smoothing-sigmas %s',
6464
sep='x',

nipype/interfaces/ants/tests/test_auto_AntsJointFusion.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,11 @@ def test_AntsJointFusion_inputs():
4444
nohash=True,
4545
usedefault=True,
4646
),
47-
out_atlas_voting_weight_name_format=dict(requires=[
48-
'out_label_fusion', 'out_intensity_fusion_name_format',
49-
'out_label_post_prob_name_format'
50-
], ),
47+
out_atlas_voting_weight_name_format=dict(
48+
requires=[
49+
'out_label_fusion', 'out_intensity_fusion_name_format',
50+
'out_label_post_prob_name_format'
51+
], ),
5152
out_intensity_fusion_name_format=dict(argstr='', ),
5253
out_label_fusion=dict(
5354
argstr='%s',

nipype/interfaces/ants/tests/test_auto_Atropos.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ def test_Atropos_inputs():
5353
prior_probability_threshold=dict(requires=['prior_weighting'], ),
5454
prior_weighting=dict(),
5555
save_posteriors=dict(),
56-
use_mixture_model_proportions=dict(requires=['posterior_formulation'
57-
], ),
56+
use_mixture_model_proportions=dict(
57+
requires=['posterior_formulation'], ),
5858
use_random_seed=dict(
5959
argstr='--use-random-seed %d',
6060
usedefault=True,

nipype/interfaces/base/tests/test_auto_StdOutCommandLine.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ def test_StdOutCommandLine_inputs():
1212
),
1313
out_file=dict(
1414
argstr='> %s',
15-
extensions=None,
1615
genfile=True,
1716
position=-1,
1817
),

nipype/interfaces/camino/tests/test_auto_AnalyzeHeader.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ def test_AnalyzeHeader_inputs():
5050
),
5151
out_file=dict(
5252
argstr='> %s',
53-
extensions=None,
5453
genfile=True,
5554
position=-1,
5655
),

nipype/interfaces/camino/tests/test_auto_ComputeEigensystem.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ def test_ComputeEigensystem_inputs():
2424
maxcomponents=dict(argstr='-maxcomponents %d', ),
2525
out_file=dict(
2626
argstr='> %s',
27-
extensions=None,
2827
genfile=True,
2928
position=-1,
3029
),

nipype/interfaces/camino/tests/test_auto_ComputeFractionalAnisotropy.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ def test_ComputeFractionalAnisotropy_inputs():
2020
inputmodel=dict(argstr='-inputmodel %s', ),
2121
out_file=dict(
2222
argstr='> %s',
23-
extensions=None,
2423
genfile=True,
2524
position=-1,
2625
),

nipype/interfaces/camino/tests/test_auto_ComputeTensorTrace.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ def test_ComputeTensorTrace_inputs():
2020
inputmodel=dict(argstr='-inputmodel %s', ),
2121
out_file=dict(
2222
argstr='> %s',
23-
extensions=None,
2423
genfile=True,
2524
position=-1,
2625
),

nipype/interfaces/camino/tests/test_auto_DTIFit.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ def test_DTIFit_inputs():
2626
),
2727
out_file=dict(
2828
argstr='> %s',
29-
extensions=None,
3029
genfile=True,
3130
position=-1,
3231
),

nipype/interfaces/camino/tests/test_auto_DTLUTGen.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ def test_DTLUTGen_inputs():
2828
),
2929
out_file=dict(
3030
argstr='> %s',
31-
extensions=None,
3231
genfile=True,
3332
position=-1,
3433
),

nipype/interfaces/camino/tests/test_auto_FSL2Scheme.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ def test_FSL2Scheme_inputs():
4040
),
4141
out_file=dict(
4242
argstr='> %s',
43-
extensions=None,
4443
genfile=True,
4544
position=-1,
4645
),

nipype/interfaces/camino/tests/test_auto_Image2Voxel.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ def test_Image2Voxel_inputs():
1818
),
1919
out_file=dict(
2020
argstr='> %s',
21-
extensions=None,
2221
genfile=True,
2322
position=-1,
2423
),

nipype/interfaces/camino/tests/test_auto_LinRecon.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ def test_LinRecon_inputs():
2424
normalize=dict(argstr='-normalize', ),
2525
out_file=dict(
2626
argstr='> %s',
27-
extensions=None,
2827
genfile=True,
2928
position=-1,
3029
),

nipype/interfaces/camino/tests/test_auto_MESD.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ def test_MESD_inputs():
4242
),
4343
out_file=dict(
4444
argstr='> %s',
45-
extensions=None,
4645
genfile=True,
4746
position=-1,
4847
),

nipype/interfaces/camino/tests/test_auto_ModelFit.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ def test_ModelFit_inputs():
3434
),
3535
out_file=dict(
3636
argstr='> %s',
37-
extensions=None,
3837
genfile=True,
3938
position=-1,
4039
),

nipype/interfaces/camino/tests/test_auto_NIfTIDT2Camino.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ def test_NIfTIDT2Camino_inputs():
2626
),
2727
out_file=dict(
2828
argstr='> %s',
29-
extensions=None,
3029
genfile=True,
3130
position=-1,
3231
),

nipype/interfaces/camino/tests/test_auto_PicoPDFs.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ def test_PicoPDFs_inputs():
3636
),
3737
out_file=dict(
3838
argstr='> %s',
39-
extensions=None,
4039
genfile=True,
4140
position=-1,
4241
),

nipype/interfaces/camino/tests/test_auto_ProcStreamlines.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@ def test_ProcStreamlines_inputs():
6262
noresample=dict(argstr='-noresample', ),
6363
out_file=dict(
6464
argstr='> %s',
65-
extensions=None,
6665
genfile=True,
6766
position=-1,
6867
),

0 commit comments

Comments
 (0)