forked from yzhao062/pyod
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
37 lines (31 loc) · 817 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
language: python
dist: xenial
env:
global:
PIP_PREFER_BINARY=true # https://github.com/numba/llvmlite/issues/471
python:
# - "2.7" # disabled due to keras https://travis-ci.org/github/yzhao062/pyod/jobs/703534508
- "3.5" # disabled for now as warning messages crash travis ci. turn it back in 3.5.7
# - "3.5-dev" # 3.5 development branch
- "3.6"
# - "3.6-dev" # 3.6 development branch
- "3.7"
- "3.8"
- "3.9"
install:
- pip install --upgrade pip
- pip install -r requirements_ci.txt
- pip install pytest
- pip install pytest-cov
- pip install coveralls
# command to run tests
script:
pytest --cov=pyod/
after_success:
- coveralls
notifications:
email:
recipients:
on_success: never # default: change
on_failure: always # default: always