jobmanager/.travis.yml
2015-05-11 23:53:23 +02:00

12 lines
388 B
YAML

language: python
python:
- "3.4"
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
- pip freeze
script:
- travis_wait python setup.py test