forked from NeuralEnsemble/elephant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
25 lines (25 loc) · 1.11 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
language: python
virtualenv:
system_site_packages: true
env:
matrix:
# This environment tests the newest supported anaconda env
- DISTRIB="conda" PYTHON_VERSION="2.7" INSTALL_MKL="true"
NUMPY_VERSION="1.8.1" SCIPY_VERSION="0.14.0" PANDAS_VERSION="0.14.0"
COVERAGE="true"
- DISTRIB="conda" PYTHON_VERSION="3.4" INSTALL_MKL="true"
NUMPY_VERSION="1.8.1" SCIPY_VERSION="0.14.0" PANDAS_VERSION="0.14.0"
COVERAGE="true"
# This environment tests minimal dependency versions
- DISTRIB="conda_min" PYTHON_VERSION="2.7" INSTALL_MKL="true"
NUMPY_VERSION="1.6.2" SCIPY_VERSION="0.11.0" COVERAGE="true"
- DISTRIB="conda_min" PYTHON_VERSION="3.4" INSTALL_MKL="true"
NUMPY_VERSION="1.8.1" SCIPY_VERSION="0.14.0" COVERAGE="true"
# basic Ubuntu build environment, without optional dependencies
- DISTRIB="ubuntu" PYTHON_VERSION="2.7" INSTALL_ATLAS="true"
COVERAGE="true"
install: source continuous_integration/install.sh
script: bash continuous_integration/test_script.sh
after_success:
- if [[ "$COVERAGE" == "true" ]]; then coveralls || echo "failed"; fi
cache: apt