-
Notifications
You must be signed in to change notification settings - Fork 48
/
.travis.yml
executable file
·47 lines (38 loc) · 1.33 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
language: python
virtualenv:
system_site_packages: true
cache:
apt: true
directories:
- $HOME/.cache/pip
env:
global:
- TEST_RUN_FOLDER="/tmp" # folder where the tests are run from
matrix:
# Do not wait for the allowed_failures entry to finish before
# setting the status
fast_finish: true
include:
# Most recent versions
- env: DISTRIB="conda" PYTHON_VERSION="3.5"
NUMPY_VERSION="*" SCIPY_VERSION="*"
SCIKIT_LEARN_VERSION="*" MATPLOTLIB_VERSION="*" COVERAGE="false"
NILEARN_VERSION="*" PANDAS_VERSION="*"
INSTALL_MKL="true"
- env: DISTRIB="conda" PYTHON_VERSION="3.5"
NUMPY_VERSION="*" SCIPY_VERSION="*"
SCIKIT_LEARN_VERSION="*" MATPLOTLIB_VERSION="*" COVERAGE="true"
NILEARN_VERSION="*" PANDAS_VERSION="*"
INSTALL_MKL="true"
allow_failures:
- env: DISTRIB="conda" PYTHON_VERSION="3.5"
NUMPY_VERSION="*" SCIPY_VERSION="*"
SCIKIT_LEARN_VERSION="*" MATPLOTLIB_VERSION="*" COVERAGE="true"
NILEARN_VERSION="*"
INSTALL_MKL="true"
install: source continuous_integration/install.sh
before_script: source continuous_integration/before_script.sh
script: source continuous_integration/test_script.sh
after_success: source continuous_integration/after_success.sh
notifications:
email: false