-
-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy path.travis.yml
More file actions
31 lines (27 loc) · 705 Bytes
/
Copy path.travis.yml
File metadata and controls
31 lines (27 loc) · 705 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
# Config file for automatic testing at travis-ci.org
dist: xenial
language: python
matrix:
include:
- python: 2.7
env: TOXENV=py27
- python: 3.4
env: TOXENV=py34
- python: 3.5
env: TOXENV=py35
- python: 3.6
env: TOXENV=py36
- python: 3.7
env: TOXENV=py37
- python: 3.6
env: TOXENV=flake8
- python: 3.6
env: TOXENV=docs
# command to install dependencies for getting Tox running, other dependencies are installed by Tox
before_install:
- pip install codecov tox
# command to run tests, e.g. python setup.py test
script:
- tox
after_success:
- codecov -e TOXENV