forked from ssato/python-anyconfig
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
34 lines (34 loc) · 751 Bytes
/
.travis.yml
File metadata and controls
34 lines (34 loc) · 751 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
# see: http://about.travis-ci.org/docs/user/languages/python/
language: python
python:
- 2.7
- 3.6
# .. seealso:: https://github.com/travis-ci/travis-ci/issues/9815
matrix:
include:
- python: 3.7
dist: xenial
sudo: true
- python: 3.7
dist: xenial
sudo: true
env: TOXENV=py37-min
- python: 3.7
dist: xenial
sudo: true
env: TOXENV=py37-doc
# see: http://docs.travis-ci.com/user/caching/#pip-cache
cache: pip
# see: http://docs.travis-ci.com/user/migrating-from-legacy/
sudo: false
install:
- pip install tox-travis
script:
- tox
after_success:
- coveralls
notifications:
email:
recipients:
on_failure: always