forked from Tinche/aiofiles
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
49 lines (49 loc) · 909 Bytes
/
Copy path.travis.yml
File metadata and controls
49 lines (49 loc) · 909 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
43
44
45
46
47
48
49
language: python
cache: pip
matrix:
include:
- python: "3.5"
env: TOXENV=py35
- python: "3.6"
env: TOXENV=py36
- python: "pypy3"
env: TOXENV=pypy3
- python: "3.7"
env: TOXENV=py37
dist: xenial
sudo: true
- python: "3.8"
env: TOXENV=py38
dist: xenial
sudo: true
#power_jobs
- python: "3.5"
env: TOXENV=py35
arch: ppc64le
- python: "3.6"
env: TOXENV=py36
arch: ppc64le
- python: "3.7"
env: TOXENV=py37
dist: xenial
sudo: true
arch: ppc64le
- python: "3.8"
env: TOXENV=py38
dist: xenial
sudo: true
arch: ppc64le
# Disable version pypy3
jobs:
exclude:
- arch: ppc64le
python: pypy3
before_install:
- pip install codecov
install:
- pip install tox
script:
- tox -e $TOXENV
after_success:
- tox -e coverage-report
- codecov