-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.travis.yml
21 lines (21 loc) · 858 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
language: python
virtualenv:
system_site_packages: true
env:
matrix:
- PYTHON_VERSION="2.7"
COVERAGE="true" NUMPY_VERSION="1.6.2" SCIPY_VERSION="0.11.0"
# This environment tests the oldest supported anaconda env
- PYTHON_VERSION="2.6"
NUMPY_VERSION="1.6.2" SCIPY_VERSION="0.11.0"
# This environment tests the newest supported anaconda env
- PYTHON_VERSION="3.4"
NUMPY_VERSION="1.8.2" SCIPY_VERSION="0.14.0"
install: source continuous_integration/install.sh
script: bash continuous_integration/test_script.sh
after_success:
# Ignore coveralls failures as the coveralls server is not very reliable
# but we don't want travis to report a failure in the github UI just
# because the coverage report failed to be published.
- if [[ "$COVERAGE" == "true" ]]; then coveralls || echo "failed"; fi
cache: apt