ignore_basepython_conflict = True
[testenv]
+description = run the functional selftest with optimized configuration
basepython = python3
usedevelop = True
install_command = pip install {opts} {packages}
[testenv:bandit]
setenv =
PYTHONWARNINGS=error
+description = check for potential security risks in source code
deps = bandit
commands = bandit -r mudpy -x mudpy/tests {posargs}
usedevelop = False
[testenv:codespell]
setenv =
PYTHONWARNINGS=error
+description = find common spelling mistakes in code and documentation
deps = codespell
commands = codespell {posargs}
usedevelop = False
[testenv:demo]
+description = start an interactive demo with the sample config
commands = mudpy {posargs}
[testenv:dist]
+description = build release artifacts and check for conformance
allowlist_externals = rm
deps =
pbr
usedevelop = False
[testenv:docs]
+description = generate hypertext documentation
allowlist_externals = rm
deps =
-r{toxinidir}/requirements.txt
[testenv:flake8]
setenv =
PYTHONWARNINGS=error
+description = style checks and static analysis of source code
deps =
flake8
flake8-bugbear
usedevelop = False
[testenv:selftest_config]
+description = run the selftest with the included sample config
commands = mudpy_selftest etc/mudpy.yaml
[testenv:yamllint]
setenv =
PYTHONWARNINGS=error
+description = test data files for correct syntax and formatting
deps = yamllint
commands = yamllint --strict {posargs} .
usedevelop = False