forked from cvxpy/cvxpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
32 lines (32 loc) · 1.03 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
26
27
28
29
30
31
32
language: python
virtualenv:
system_site_packages: true
env:
global:
- LD_PRELOAD=/usr/lib/x86_64-linux-gnu/libgfortran.so.3
matrix:
- DISTRIB="conda" PYTHON_VERSION="2.7" INSTALL_ATLAS="true"
NUMPY_VERSION="1.10.4" SCIPY_VERSION="0.17.0"
COVERAGE="true" INSTALL_GLPK="true"
- DISTRIB="conda" PYTHON_VERSION="2.7" INSTALL_ATLAS="true"
NUMPY_VERSION="1.10.4" SCIPY_VERSION="0.17.0"
COVERAGE="true" INSTALL_GLPK="false"
- DISTRIB="conda" PYTHON_VERSION="3.5" INSTALL_ATLAS="true"
NUMPY_VERSION="1.10.4" SCIPY_VERSION="0.17.0"
COVERAGE="true" INSTALL_GLPK="true"
- DISTRIB="conda" PYTHON_VERSION="3.5" INSTALL_ATLAS="true"
NUMPY_VERSION="1.10.4" SCIPY_VERSION="0.17.0"
COVERAGE="true" INSTALL_GLPK="false"
sudo: required
install: source continuous_integration/install.sh
script:
- bash continuous_integration/test_script.sh
- flake8 .
after_success:
- if [[ "$COVERAGE" == "true" ]]; then coveralls; fi
cache: apt
addons:
apt:
packages:
- gfortran
- libgfortran3