
We're starting to run jeepyb under python3 in the new gerrit image. Change-Id: Ia71cb13f3b45055bbb9a311807fa65a89c8be62a
24 lines
399 B
INI
24 lines
399 B
INI
[tox]
|
|
envlist = pep8
|
|
|
|
[testenv]
|
|
setenv = VIRTUAL_ENV={envdir}
|
|
deps = -r{toxinidir}/requirements.txt
|
|
-r{toxinidir}/test-requirements.txt
|
|
basepython = python3
|
|
|
|
[testenv:pep8]
|
|
commands = flake8
|
|
|
|
[testenv:pyflakes]
|
|
commands = flake8
|
|
|
|
[testenv:venv]
|
|
commands = {posargs}
|
|
|
|
[flake8]
|
|
# E125 and H are intentionally ignored
|
|
ignore = E125,H
|
|
show-source = True
|
|
exclude = .venv,.tox,dist,doc,build,*.egg
|