forked from Flexget/Flexget
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
34 lines (34 loc) · 841 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
language: python
cache: pip
sudo: false
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
# Install libyaml for vcr speedup?
addons:
apt:
packages:
- libyaml-dev
- unrar
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
- pip install --upgrade pip setuptools
- pip install .
- pip install -r dev-requirements.txt
- pip install -r dev-requirements-extras.txt
# command to run tests, e.g. python setup.py test
script: py.test --cov flexget --cov-report xml -n 3
after_success:
- python-codacy-coverage -r coverage.xml
env: VCR_RECORD_MODE=none
notifications:
email: false
webhooks:
urls:
- http://n.tkte.ch/h/343/-Sl5O1RgMVaGmIAJDbblXVIc
- https://webhooks.gitter.im/e/45c2039915b8f75f1956
on_success: change
on_failure: always
on_start: never