Skip to content

Commit c6af7e1

Browse files
committed
travis: Test Python 3.8
Signed-off-by: Alistair Francis <alistair@alistair23.me>
1 parent 74ba2bc commit c6af7e1

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.travis.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,15 @@ language: python
22
dist: xenial
33
sudo: false
44

5-
65
install:
76
- pip install tox
87

98
matrix:
109
include:
1110
- python: '3.6'
1211
env: TOXENV=check36
12+
- python: '3.8'
13+
env: TOXENV=check38
1314
- python: '3.4'
1415
env: TOXENV=py34
1516
- python: '3.5'
@@ -18,6 +19,8 @@ matrix:
1819
env: TOXENV=py36
1920
- python: '3.7'
2021
env: TOXENV=py37
22+
- python: '3.8'
23+
env: TOXENV=py38
2124

2225
script:
2326
- tox

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
envlist =
3-
check{36},
4-
py{34,35,36,37},
3+
check{36,38},
4+
py{34,35,36,37,38},
55
coverage
66

77
[testenv]

0 commit comments

Comments
 (0)