forked from GrahamDumpleton/wrapt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
28 lines (28 loc) · 896 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
language: python
env:
global:
- COVERAGE_CMD="coverage run -m"
- COVERAGE_DEP="coverage"
matrix:
include:
- python: "2.7"
env: TOX_ARGS="-e py27-install-extensions,py27-disable-extensions,py27-without-extensions"
- python: "3.4"
env: TOX_ARGS="-e py34-install-extensions,py34-disable-extensions,py34-without-extensions"
- python: "3.5"
env: TOX_ARGS="-e py35-install-extensions,py35-disable-extensions,py35-without-extensions"
- python: "3.6"
env: TOX_ARGS="-e py36-install-extensions,py36-disable-extensions,py36-without-extensions"
- python: "3.7"
dist: xenial
sudo: true
env: TOX_ARGS="-e py37-install-extensions,py37-disable-extensions,py37-without-extensions"
- python: "pypy3"
env: TOX_ARGS="-e pypy-without-extensions"
install:
- pip install tox coveralls
script:
- tox $TOX_ARGS
after_script:
- coverage combine
- coveralls