diff --git a/.travis.yml b/.travis.yml index ca8c1102..55529bc6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -31,12 +31,20 @@ jobs: sudo: required env: TOXENV=py37 + - + python: 3.8 + env: TOXENV=py38 + - python: 3.7 dist: xenial sudo: required env: TOXENV=py37-ansi2html + - + python: 3.8 + env: TOXENV=py38-ansi2html + - python: pypy3 env: TOXENV=pypy3 diff --git a/setup.py b/setup.py index c8f8c1f6..03e34be1 100644 --- a/setup.py +++ b/setup.py @@ -31,6 +31,7 @@ "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3 :: Only", ], ) diff --git a/tox.ini b/tox.ini index 362a4965..cada7ec0 100644 --- a/tox.ini +++ b/tox.ini @@ -4,7 +4,7 @@ # and then run "tox" from this directory. [tox] -envlist = py{36,37,py3}{,-ansi2html}, linting +envlist = py{36,37,38,py3}{,-ansi2html}, linting [testenv] setenv = PYTHONDONTWRITEBYTECODE=1 @@ -12,7 +12,7 @@ deps = pytest-xdist pytest-rerunfailures pytest-mock - py{36,37,py3}-ansi2html: ansi2html + py{36,37,38,py3}-ansi2html: ansi2html commands = pytest -v -r a --color=yes --html={envlogdir}/report.html --self-contained-html {posargs} [testenv:linting]