jobmanager/.travis.yml

18 lines
486 B
YAML
Raw Normal View History

2015-04-26 15:55:20 +02:00
language: python
2015-05-12 11:01:47 +02:00
notifications:
email: false
2015-04-26 15:49:36 +02:00
python:
- "3.4"
2015-05-12 11:00:12 +02:00
virtualenv:
system_site_packages: true
2015-04-26 15:55:20 +02:00
before_install:
- sudo apt-get update -qq
2015-05-12 11:00:12 +02:00
- if [[ $TRAVIS_PYTHON_VERSION == "2.7" ]]; then sudo apt-get -y install python-numpy python-scipy python-psutil; fi
- if [[ $TRAVIS_PYTHON_VERSION == "3.4" ]]; then sudo apt-get -y install python3-numpy python3-scipy python-psutil; fi
2015-05-12 10:48:22 +02:00
install:
2015-05-12 11:01:47 +02:00
- travis_retry pip install sqlitedict
2015-04-26 16:05:40 +02:00
- pip freeze
2015-04-26 15:49:36 +02:00
script:
2015-05-11 23:53:23 +02:00
- travis_wait python setup.py test