|
|
@ -1,5 +1,5 @@ |
|
|
|
[tox] |
|
|
|
[tox] |
|
|
|
envlist = py27,py35,py36,py37,py38,py39,pypy,pypy3,coverage-report |
|
|
|
envlist = py27,py35,py36,py37,py38,py39,py39-dev,pypy,pypy3,coverage-report |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[testenv] |
|
|
|
[testenv] |
|
|
@ -75,6 +75,16 @@ commands = |
|
|
|
coverage run --parallel -m pytest {posargs} |
|
|
|
coverage run --parallel -m pytest {posargs} |
|
|
|
flake8 . --count --show-source --statistics |
|
|
|
flake8 . --count --show-source --statistics |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[testenv:py39-dev] |
|
|
|
|
|
|
|
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] |
|
|
|
[testenv:pypy] |
|
|
|
deps= |
|
|
|
deps= |
|
|
|
-r{toxinidir}/requirements.txt |
|
|
|
-r{toxinidir}/requirements.txt |
|
|
|