Skip to content

Commit

Permalink
TRAVIS: more verbose output
Browse files Browse the repository at this point in the history
  • Loading branch information
ggventurini committed Feb 18, 2015
1 parent 59cfb6c commit 9f4c940
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ virtualenv:
before_install:
- sudo apt-get update
- sudo apt-get install -qq libblas-dev
- 'if [ $TRAVIS_PYTHON_VERSION == "2.7" ]; then sudo apt-get build-dep -qq python-scipy python-numpy; sudo apt-get install -qq python-matplotlib cython; fi'
- 'if [ $TRAVIS_PYTHON_VERSION == "2.7" ]; then sudo apt-get build-dep -qq python-scipy python-numpy; sudo apt-get install -qq python-numpy python-scipy python-matplotlib cython; fi'
- 'if [ $TRAVIS_PYTHON_VERSION == "3.4" ]; then sudo apt-get build-dep -qq python3-scipy python3-numpy; sudo apt-get build-dep -qq python-matplotlib cython; fi'
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
- 'if [ $TRAVIS_PYTHON_VERSION == "2.7" ]; then pip install numpy scipy matplotlib cython --upgrade; fi'
- 'if [ $TRAVIS_PYTHON_VERSION == "3.4" ]; then pip install numpy scipy matplotlib --upgrade; fi'
- 'if [ $TRAVIS_PYTHON_VERSION == "3.4" ]; then pip install cython --upgrade --install-option="--no-cython-compile"; fi'
- 'if [ $TRAVIS_PYTHON_VERSION == "2.7" ]; then pip install -v -v -v numpy scipy matplotlib cython --upgrade; fi'
- 'if [ $TRAVIS_PYTHON_VERSION == "3.4" ]; then pip install -v -v -v numpy scipy matplotlib --upgrade; fi'
- 'if [ $TRAVIS_PYTHON_VERSION == "3.4" ]; then pip install -v -v -v cython --upgrade --install-option="--no-cython-compile"; fi'
- pip install nose coveralls
# command to run tests, e.g. python setup.py test
script: nosetests --with-coverage --cover-package=deltasigma deltasigma
Expand Down

0 comments on commit 9f4c940

Please sign in to comment.