Skip to content

Commit f3e7d50

Browse files
authored
Merge pull request #1679 from djarecka/travis_test
[FIX] Minor errors in the travis file and in one doctest
2 parents deb99a0 + f23f715 commit f3e7d50

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ before_install:
2424
fsl afni elastix fsl-atlases; fi &&
2525
if $INSTALL_DEB_DEPENDECIES; then
2626
source /etc/fsl/fsl.sh;
27-
source /etc/afni/afni.sh; fi &&
28-
export FSLOUTPUTTYPE=NIFTI_GZ; }
27+
source /etc/afni/afni.sh;
28+
export FSLOUTPUTTYPE=NIFTI_GZ; fi }
2929
- travis_retry bef_inst
3030
install:
3131
# Add install of vtk and mayavi to test mesh (disabled): conda install -y vtk mayavi &&

nipype/interfaces/fsl/possum.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ class B0Calc(FSLCommand):
7979
>>> b0calc = B0Calc()
8080
>>> b0calc.inputs.in_file = 'tissue+air_map.nii'
8181
>>> b0calc.inputs.z_b0 = 3.0
82+
>>> b0calc.inputs.output_type = "NIFTI_GZ"
8283
>>> b0calc.cmdline # doctest: +IGNORE_UNICODE
8384
'b0calc -i tissue+air_map.nii -o tissue+air_map_b0field.nii.gz --b0=3.00'
8485

0 commit comments

Comments
 (0)