forked from scot-dev/scot
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.travis.yml
30 lines (22 loc) · 913 Bytes
/
.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
26
27
28
29
30
language: python
virtualenv:
system_site_packages: true
env:
matrix:
#- DISTRIB="ubuntu" PYTHON_VERSION="2.7" INSTALL_ATLAS="true"
# This environment tests the oldest supported anaconda env
- DISTRIB="conda" PYTHON_VERSION="2.7" INSTALL_MKL="false"
NUMPY_VERSION="1.8.1" SCIPY_VERSION="0.13.3"
SKLEARN_VERSION="0.14.1" MATPLOTLIB_VERSION="1.3.1"
INSTALL_SCOT="true" RUN_EXAMPLES="false"
# This environment tests the newest supported anaconda env
- DISTRIB="conda" PYTHON_VERSION="3.3" INSTALL_MKL="false"
NUMPY_VERSION="1.8.1" SCIPY_VERSION="0.13.3"
SKLEARN_VERSION="0.14.1" MATPLOTLIB_VERSION="1.3.1"
COVERAGE="true"
INSTALL_SCOT="true" RUN_EXAMPLES="false"
install: source distributions/ci/install.sh
script: source distributions/ci/run_tests.sh
after_success:
- if [[ "$COVERAGE" == "true" ]]; then coveralls; fi
cache: apt