Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit a49ba9e

Browse files
committed
Make the travis output slightly quieter, particularly when installing dependencies. Add Python 3.3 to the tests.
1 parent e5d9960 commit a49ba9e

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)