From a49ba9ed92b45409f6aff00f84047f4b82f870d6 Mon Sep 17 00:00:00 2001 From: Michael Droettboom Date: Wed, 1 May 2013 08:08:33 -0400 Subject: [PATCH] Make the travis output slightly quieter, particularly when installing dependencies. Add Python 3.3 to the tests. --- .travis.yml | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/.travis.yml b/.travis.yml index 6ac48faf1107..27f3008405ae 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,19 +4,15 @@ python: - 2.6 - 2.7 - 3.2 + - 3.3 install: - - pip install --use-mirrors nose - # This is a workaround to install numpy with the version of - # virtualenv in Travis. If that is updated in the future, this can - # be simplified to 'pip install numpy' - - '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' - - 'if [ ${TRAVIS_PYTHON_VERSION:0:1} == "2" ]; then pip install numpy; fi' # should be nop if pre-installed - - if [[ $TRAVIS_PYTHON_VERSION == '2.'* ]]; then pip install --use-mirrors PIL; fi - - sudo apt-get update && sudo apt-get install inkscape + - pip -q install --use-mirrors nose numpy + - if [[ $TRAVIS_PYTHON_VERSION == '2.'* ]]; then pip -q install --use-mirrors PIL; fi + - sudo apt-get -qq update && sudo apt-get -qq install inkscape - python setup.py install script: - mkdir ../tmp_test_dir - cd ../tmp_test_dir - - python ../matplotlib/tests.py + - python ../matplotlib/tests.py -sv