forked from html5lib/html5lib-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
42 lines (35 loc) · 673 Bytes
/
.travis.yml
File metadata and controls
42 lines (35 loc) · 673 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
35
36
37
38
39
40
41
42
language: python
python:
- "pypy3"
- "pypy"
- "3.6"
- "3.5"
- "3.4"
- "2.7"
cache: pip
env:
global:
- PYTEST_COMMAND="coverage run -m pytest"
matrix:
- TOXENV=optional
- TOXENV=base
- TOXENV=six19-optional
matrix:
include:
- python: "3.7"
dist: xenial # required for Python >= 3.7
env: TOXENV=optional
- python: "3.7"
dist: xenial # required for Python >= 3.7
env: TOXENV=base
- python: "3.7"
dist: xenial # required for Python >= 3.7
env: TOXENV=six19-optional
install:
- pip install tox codecov
script:
- tox
after_script:
- python debug-info.py
after_success:
- codecov