forked from cvxpy/cvxpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
22 lines (22 loc) · 870 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
language: python
virtualenv:
system_site_packages: true
env:
matrix:
- DISTRIB="conda" PYTHON_VERSION="2.7" INSTALL_ATLAS="true"
NUMPY_VERSION="1.9" SCIPY_VERSION="0.15"
COVERAGE="true" INSTALL_GLPK="true"
- DISTRIB="conda" PYTHON_VERSION="2.7" INSTALL_ATLAS="true"
NUMPY_VERSION="1.9" SCIPY_VERSION="0.15"
COVERAGE="true" INSTALL_GLPK="false"
- DISTRIB="conda" PYTHON_VERSION="3.4" INSTALL_ATLAS="true"
NUMPY_VERSION="1.9" SCIPY_VERSION="0.15"
COVERAGE="true" INSTALL_GLPK="true"
- DISTRIB="conda" PYTHON_VERSION="3.4" INSTALL_ATLAS="true"
NUMPY_VERSION="1.9" SCIPY_VERSION="0.15"
COVERAGE="true" INSTALL_GLPK="false"
install: source continuous_integration/install.sh
script: bash continuous_integration/test_script.sh
after_success:
- if [[ "$COVERAGE" == "true" ]]; then coveralls; fi
cache: apt