forked from casact/chainladder-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
49 lines (41 loc) · 774 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
language: python
cache:
apt: true
addons:
apt:
packages:
- gfortran
apt:
packages:
- gfortran
matrix:
fast_finish: true
include:
- python: 3.6
env:
- PANDAS: 0.23
- SCIKIT-LEARN: 0.19.0
- python: 3.5
env:
- PANDAS: 0.23
- SCIKIT-LEARN: 0.18.0
- python: 3.6
env:
- PANDAS: 0.24
- SCIKIT-LEARN: 0.20.0
- NUMPY: 1.16
- python: 3.6
env:
- FLAKE8: true
before_install: source ci_scripts/install.sh
install: if [ -z ${FLAKE8} ]; then pip install -e .; fi
script:
- if [ -z ${FLAKE8} ]; then
py.test --cov=chainladder chainladder -v;
else
echo $PATH;
which flake8;
ci_scripts/flake8_diff.sh;
fi;
after_success:
- if [ -z ${FLAKE8} ]; then codecov; fi