Added Python 3.8 to CI (#192)

This commit is contained in:
Chris Caron 2020-01-05 18:56:54 -05:00 committed by GitHub
parent 011607c7d0
commit 8dd62a8e75
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 13 additions and 1 deletions

View File

@ -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"

12
tox.ini
View File

@ -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