forked from fusionapp/txdocumint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
43 lines (38 loc) · 864 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
language: python
sudo: false
cache: pip
branches:
only:
- master
matrix:
include:
- python: 2.7
env: TOXENV=py27-twlatest
- python: pypy
env: TOXENV=pypy-twlatest
- python: 2.7
env: TOXENV=py27-twtrunk
- python: pypy
env: TOXENV=pypy-twtrunk
- python: 2.7
env: TOXENV=py27-twlowest
- python: pypy
env: TOXENV=pypy-twlowest
- python: 2.7
env: TOXENV=flake8
install:
# Upgrade packaging tools separately, so that other installations are
# performed with the upgraded tools.
- pip install -U pip setuptools wheel
- pip install codecov coverage tox
- python setup.py --version
- pip install -e.[dev]
script:
- tox
after_success:
# Codecov needs combined coverage, and having the raw report in the test
# output can be useful.
- tox -e coverage-report
- codecov
notifications:
email: false