20 lines
344 B
INI
20 lines
344 B
INI
[tox]
|
|
isolated_build = True
|
|
envlist = py3{8,11}, lint
|
|
|
|
[testenv]
|
|
package = wheel
|
|
wheel_build_env = .pkg
|
|
|
|
[testenv:py3{8,11}]
|
|
description = Run pytest
|
|
deps = pytest
|
|
ansible
|
|
ansible-runner
|
|
-rrequirements.txt
|
|
commands = pytest {posargs}
|
|
|
|
[testenv:lint]
|
|
description = Run linter
|
|
deps = flake8
|
|
commands = flake8 --format=pylint
|