forked from yzhao062/pyod
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
34 lines (28 loc) · 702 Bytes
/
.travis.yml
File metadata and controls
34 lines (28 loc) · 702 Bytes
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
language: python
dist: xenial
env:
global:
PIP_PREFER_BINARY=true # https://github.com/numba/llvmlite/issues/471
python:
- "2.7"
# - "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
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