ptgbot/tox.ini
Clark Boylan 260f6f3624 Migrate ptgbot to quay.io
This migrates publication of ptgbot container images to quay.io. We also
update the source of the opendev python base images to quay.io.

Depends-On: https://review.opendev.org/c/opendev/system-config/+/881932
Change-Id: Ia23aa05e770d0f002ce74effdae08dacb6edc18a
2023-05-08 09:53:37 -07:00

28 lines
518 B
INI

[tox]
envlist = py3,pep8,pyflakes
[testenv]
allowlist_externals =
find
deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
commands =
find . -type f -name "*.pyc" -delete
stestr run --slowest {posargs}
[testenv:pep8]
commands = flake8
[testenv:pyflakes]
commands = flake8
[testenv:venv]
commands = {posargs}
[flake8]
# E125 and H are intentionally ignored
# W504 line break after binary operator
ignore = E125,H,W504
show-source = True
exclude = .venv,.tox,dist,doc,build,*.egg