2015-04-26 15:55:20 +02:00
|
|
|
language: python
|
2015-04-26 15:49:36 +02:00
|
|
|
python:
|
|
|
|
- "3.4"
|
2015-04-26 15:55:20 +02:00
|
|
|
before_install:
|
2015-04-26 16:35:02 +02:00
|
|
|
# We need to use conda, because virtualenv did not work on travis with 3.4
|
2015-04-26 15:55:20 +02:00
|
|
|
- sudo apt-get update -qq
|
2015-05-12 10:48:22 +02:00
|
|
|
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
|
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
|
|
|
|
|