From 8dd62a8e7573196454130b38f64a2b72692e7424 Mon Sep 17 00:00:00 2001 From: Chris Caron Date: Sun, 5 Jan 2020 18:56:54 -0500 Subject: [PATCH] Added Python 3.8 to CI (#192) --- .travis.yml | 2 ++ tox.ini | 12 +++++++++++- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 6cbe99f8..d679210f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -19,6 +19,8 @@ matrix: env: TOXENV=py36 - python: "3.7" env: TOXENV=py37 + - python: "3.8" + env: TOXENV=py38 - python: "pypy2.7-6.0" env: TOXENV=pypy - python: "pypy3.5-6.0" diff --git a/tox.ini b/tox.ini index 1f337600..850b8612 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py27,py34,py35,py36,py37,pypy,pypy3,coverage-report +envlist = py27,py34,py35,py36,py37,py38,pypy,pypy3,coverage-report [testenv] @@ -65,6 +65,16 @@ commands = coverage run --parallel -m pytest {posargs} flake8 . --count --show-source --statistics +[testenv:py38] +deps= + dbus-python + -r{toxinidir}/requirements.txt + -r{toxinidir}/dev-requirements.txt +commands = + python setup.py compile_catalog + coverage run --parallel -m pytest {posargs} + flake8 . --count --show-source --statistics + [testenv:pypy] deps= -r{toxinidir}/requirements.txt