Skip to content

Commit 301b9d9

Browse files
authored
Enable py38 testing (#326)
1 parent 992e3de commit 301b9d9

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

.travis.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,20 @@ jobs:
3131
sudo: required
3232
env: TOXENV=py37
3333

34+
-
35+
python: 3.8
36+
env: TOXENV=py38
37+
3438
-
3539
python: 3.7
3640
dist: xenial
3741
sudo: required
3842
env: TOXENV=py37-ansi2html
3943

44+
-
45+
python: 3.8
46+
env: TOXENV=py38-ansi2html
47+
4048
-
4149
python: pypy3
4250
env: TOXENV=pypy3

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
"Programming Language :: Python :: 3",
3232
"Programming Language :: Python :: 3.6",
3333
"Programming Language :: Python :: 3.7",
34+
"Programming Language :: Python :: 3.8",
3435
"Programming Language :: Python :: 3 :: Only",
3536
],
3637
)

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44
# and then run "tox" from this directory.
55

66
[tox]
7-
envlist = py{36,37,py3}{,-ansi2html}, linting
7+
envlist = py{36,37,38,py3}{,-ansi2html}, linting
88

99
[testenv]
1010
setenv = PYTHONDONTWRITEBYTECODE=1
1111
deps =
1212
pytest-xdist
1313
pytest-rerunfailures
1414
pytest-mock
15-
py{36,37,py3}-ansi2html: ansi2html
15+
py{36,37,38,py3}-ansi2html: ansi2html
1616
commands = pytest -v -r a --color=yes --html={envlogdir}/report.html --self-contained-html {posargs}
1717

1818
[testenv:linting]

0 commit comments

Comments
 (0)