2021-03-26 21:52:00 +01:00
|
|
|
[tox]
|
2021-11-25 21:20:22 +01:00
|
|
|
envlist = py27,py36,py37,py38,py39,py39-dev,pypy,pypy3,bare,coverage-report
|
2021-03-26 21:52:00 +01:00
|
|
|
|
|
|
|
|
|
|
|
[testenv]
|
|
|
|
# Prevent random setuptools/pip breakages like
|
|
|
|
# https://github.com/pypa/setuptools/issues/1042 from breaking our builds.
|
|
|
|
setenv =
|
|
|
|
VIRTUALENV_NO_DOWNLOAD=1
|
|
|
|
deps=
|
|
|
|
-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:py27]
|
|
|
|
deps=
|
|
|
|
dbus-python
|
|
|
|
-r{toxinidir}/requirements.txt
|
|
|
|
-r{toxinidir}/dev-requirements.txt
|
2021-11-25 21:20:22 +01:00
|
|
|
-r{toxinidir}/all-plugin-requirements.txt
|
2021-03-26 21:52:00 +01:00
|
|
|
commands =
|
|
|
|
python setup.py compile_catalog
|
|
|
|
coverage run --parallel -m pytest {posargs}
|
|
|
|
flake8 . --count --show-source --statistics
|
|
|
|
|
2021-11-23 23:02:16 +01:00
|
|
|
[testenv:py36]
|
2021-03-26 21:52:00 +01:00
|
|
|
deps=
|
|
|
|
dbus-python
|
|
|
|
-r{toxinidir}/requirements.txt
|
|
|
|
-r{toxinidir}/dev-requirements.txt
|
2021-11-25 21:20:22 +01:00
|
|
|
-r{toxinidir}/all-plugin-requirements.txt
|
2021-03-26 21:52:00 +01:00
|
|
|
commands =
|
|
|
|
python setup.py compile_catalog
|
|
|
|
coverage run --parallel -m pytest {posargs}
|
|
|
|
flake8 . --count --show-source --statistics
|
|
|
|
|
2021-11-23 23:02:16 +01:00
|
|
|
[testenv:py37]
|
2021-03-26 21:52:00 +01:00
|
|
|
deps=
|
|
|
|
dbus-python
|
|
|
|
-r{toxinidir}/requirements.txt
|
|
|
|
-r{toxinidir}/dev-requirements.txt
|
2021-11-25 21:20:22 +01:00
|
|
|
-r{toxinidir}/all-plugin-requirements.txt
|
2021-03-26 21:52:00 +01:00
|
|
|
commands =
|
|
|
|
python setup.py compile_catalog
|
|
|
|
coverage run --parallel -m pytest {posargs}
|
|
|
|
flake8 . --count --show-source --statistics
|
|
|
|
|
2021-11-23 23:02:16 +01:00
|
|
|
[testenv:py38]
|
2021-03-26 21:52:00 +01:00
|
|
|
deps=
|
|
|
|
dbus-python
|
|
|
|
-r{toxinidir}/requirements.txt
|
|
|
|
-r{toxinidir}/dev-requirements.txt
|
2021-11-25 21:20:22 +01:00
|
|
|
-r{toxinidir}/all-plugin-requirements.txt
|
2021-03-26 21:52:00 +01:00
|
|
|
commands =
|
|
|
|
python setup.py compile_catalog
|
|
|
|
coverage run --parallel -m pytest {posargs}
|
|
|
|
flake8 . --count --show-source --statistics
|
|
|
|
|
2021-11-23 23:02:16 +01:00
|
|
|
[testenv:py39]
|
2021-03-26 21:52:00 +01:00
|
|
|
deps=
|
|
|
|
dbus-python
|
|
|
|
-r{toxinidir}/requirements.txt
|
|
|
|
-r{toxinidir}/dev-requirements.txt
|
2021-11-25 21:20:22 +01:00
|
|
|
-r{toxinidir}/all-plugin-requirements.txt
|
2021-03-26 21:52:00 +01:00
|
|
|
commands =
|
|
|
|
python setup.py compile_catalog
|
|
|
|
coverage run --parallel -m pytest {posargs}
|
|
|
|
flake8 . --count --show-source --statistics
|
|
|
|
|
2021-11-25 21:20:22 +01:00
|
|
|
|
|
|
|
[testenv:bare]
|
2021-03-26 21:52:00 +01:00
|
|
|
deps=
|
|
|
|
-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
|
|
|
|
|
2021-11-25 21:20:22 +01:00
|
|
|
[testenv:py39-dev]
|
2021-05-02 15:47:30 +02:00
|
|
|
deps=
|
|
|
|
dbus-python
|
|
|
|
-r{toxinidir}/requirements.txt
|
|
|
|
-r{toxinidir}/dev-requirements.txt
|
2021-11-25 21:20:22 +01:00
|
|
|
-r{toxinidir}/all-plugin-requirements.txt
|
2021-05-02 15:47:30 +02:00
|
|
|
commands =
|
|
|
|
python setup.py compile_catalog
|
|
|
|
coverage run --parallel -m pytest {posargs}
|
|
|
|
flake8 . --count --show-source --statistics
|
|
|
|
|
2021-03-26 21:52:00 +01:00
|
|
|
[testenv:pypy]
|
|
|
|
deps=
|
|
|
|
-r{toxinidir}/requirements.txt
|
|
|
|
-r{toxinidir}/dev-requirements.txt
|
2021-11-25 21:20:22 +01:00
|
|
|
-r{toxinidir}/all-plugin-requirements.txt
|
2021-03-26 21:52:00 +01:00
|
|
|
commands =
|
|
|
|
python setup.py compile_catalog
|
|
|
|
coverage run --parallel -m pytest {posargs}
|
|
|
|
flake8 . --count --show-source --statistics
|
|
|
|
|
|
|
|
[testenv:pypy3]
|
|
|
|
deps=
|
|
|
|
-r{toxinidir}/requirements.txt
|
|
|
|
-r{toxinidir}/dev-requirements.txt
|
2021-11-25 21:20:22 +01:00
|
|
|
-r{toxinidir}/all-plugin-requirements.txt
|
2021-03-26 21:52:00 +01:00
|
|
|
# Last supported cryptography version that can link against
|
|
|
|
# OpenSSL v1.0.2 (which pypy35 uses) is 3.1.1
|
|
|
|
commands =
|
|
|
|
pip install --upgrade cryptography==3.1.1
|
|
|
|
python setup.py compile_catalog
|
|
|
|
coverage run --parallel -m pytest {posargs}
|
|
|
|
flake8 . --count --show-source --statistics
|
|
|
|
|
|
|
|
[testenv:coverage-report]
|
|
|
|
deps = coverage
|
|
|
|
skip_install = true
|
|
|
|
commands=
|
|
|
|
coverage combine
|
|
|
|
coverage report
|