install missing modules

This commit is contained in:
paulmueller 2015-05-12 10:48:22 +02:00
parent e751d04c5e
commit 84244fdc4e

View file

@ -4,8 +4,11 @@ python:
before_install:
# We need to use conda, because virtualenv did not work on travis with 3.4
- sudo apt-get update -qq
- if [[ $TRAVIS_PYTHON_VERSION == "2.7" ]]; then sudo apt-get -y install python-numpy; fi
- if [[ $TRAVIS_PYTHON_VERSION == "3.4" ]]; then sudo apt-get -y install python3-numpy; fi
install:
- if [[ $TRAVIS_PYTHON_VERSION == "2.7" ]]; then sudo apt-get -y install python-numpy python-scipy; fi
- if [[ $TRAVIS_PYTHON_VERSION == "3.4" ]]; then sudo apt-get -y install python3-numpy python3-scipy; fi
- pip install sqlitedict
- pip install psutil
- pip freeze
script:
- travis_wait python setup.py test