260f6f3624
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
28 lines
518 B
INI
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
|