1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
[tox]
envlist = py36, py37, py38, py39, flake8, docs
[testenv]
deps = nose
commands = nosetests --nocapture {posargs}
[testenv:py36]
basepython = python3.6
[testenv:py37]
basepython = python3.7
[testenv:py38]
basepython = python3.8
[testenv:py39]
basepython = python3.9
[testenv:flake8]
basepython = python3.8
deps = flake8
commands = flake8 check_systemd.py test setup.py
[testenv:docs]
basepython = python3.8
deps =
pgi # PGI - Pure Python GObject Introspection Bindings API compatible with PyGObject.
sphinx
sphinx_rtd_theme
commands = sphinx-build -q -b html doc/source {envtmpdir}/html
|