Skip to content

Commit 45d3fbf

Browse files
committed
changed travis appveyor utils per test errors
1 parent df8bc04 commit 45d3fbf

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ cache:
1414
- $HOME/.cache/pip
1515
env:
1616
global:
17-
- DEPENDS="six numpy scipy matplotlib h5py pillow pydicom"
17+
- DEPENDS="six numpy scipy matplotlib h5py pillow pydicom hypothesis"
1818
- OPTIONAL_DEPENDS=""
1919
- INSTALL_TYPE="setup"
2020
- EXTRA_WHEELS="https://5cf40426d9f06eb7461d-6fe47d9331aba7cd62fc36c7196769e4.ssl.cf2.rackcdn.com"
@@ -95,7 +95,7 @@ before_install:
9595
- source venv/bin/activate
9696
- python --version # just to check
9797
- pip install -U pip wheel # needed at one point
98-
- retry pip install nose flake8 mock # always
98+
- retry pip install nose flake8 mock hypothesis # always
9999
- pip install $EXTRA_PIP_FLAGS $DEPENDS $OPTIONAL_DEPENDS
100100
- if [ "${COVERAGE}" == "1" ]; then
101101
pip install coverage;

appveyor.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ install:
2121

2222
# Install the dependencies of the project.
2323
- pip install numpy scipy matplotlib nose h5py mock
24+
- pip install hypothesis
2425
- pip install pydicom
2526
- pip install .
2627
- SET NIBABEL_DATA_DIR=%CD%\nibabel-data

nibabel/cmdline/utils.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
Helper utilities to be used in cmdline applications
1111
"""
1212

13-
1413
# global verbosity switch
1514
import re
1615
from io import StringIO
@@ -49,7 +48,7 @@ def table2string(table, out=None):
4948
Where to print. If None -- will print and return string
5049
5150
Returns
52-
-------
51+
-------
5352
string if out was None
5453
"""
5554

0 commit comments

Comments
 (0)