Skip to content

Commit 51d1d87

Browse files
committed
Merge pull request #1965 from mdboom/simplify-travis
Make the travis output quieter on v1.2.x
2 parents e5d9960 + a49ba9e commit 51d1d87

File tree

1 file changed

+5
-9
lines changed

1 file changed

+5
-9
lines changed

.travis.yml

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,15 @@ python:
44
- 2.6
55
- 2.7
66
- 3.2
7+
- 3.3
78

89
install:
9-
- pip install --use-mirrors nose
10-
# This is a workaround to install numpy with the version of
11-
# virtualenv in Travis. If that is updated in the future, this can
12-
# be simplified to 'pip install numpy'
13-
- 'if [ $TRAVIS_PYTHON_VERSION == "3.2" ]; then pip install https://github.com/y-p/numpy/archive/1.6.2_with_travis_fix.tar.gz; fi'
14-
- 'if [ ${TRAVIS_PYTHON_VERSION:0:1} == "2" ]; then pip install numpy; fi' # should be nop if pre-installed
15-
- if [[ $TRAVIS_PYTHON_VERSION == '2.'* ]]; then pip install --use-mirrors PIL; fi
16-
- sudo apt-get update && sudo apt-get install inkscape
10+
- pip -q install --use-mirrors nose numpy
11+
- if [[ $TRAVIS_PYTHON_VERSION == '2.'* ]]; then pip -q install --use-mirrors PIL; fi
12+
- sudo apt-get -qq update && sudo apt-get -qq install inkscape
1713
- python setup.py install
1814

1915
script:
2016
- mkdir ../tmp_test_dir
2117
- cd ../tmp_test_dir
22-
- python ../matplotlib/tests.py
18+
- python ../matplotlib/tests.py -sv

0 commit comments

Comments
 (0)