
I unlock the hacking requirements in test-requirements.txt H302 and H305 have already been removed from the OpenStack Hacking library. Removing them from the tox file shouldn't have required any code changes. Change-Id: I83f8940cbc24f2c4ae25ead3803faeea49008b58
44 lines
1.2 KiB
INI
44 lines
1.2 KiB
INI
[tox]
|
|
envlist = {py27,pypy}-{mysql,postgres},pep8
|
|
minversion = 2.0
|
|
skipsdist = True
|
|
|
|
[testenv]
|
|
setenv = VIRTUAL_ENV={envdir}
|
|
usedevelop = True
|
|
install_command =
|
|
{toxinidir}/tools/tox_install.sh {env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt} {opts} {packages} --pre
|
|
whitelist_externals = find
|
|
deps = -r{toxinidir}/requirements.txt
|
|
-r{toxinidir}/test-requirements.txt
|
|
PyMySQL>=0.6.1
|
|
commands =
|
|
find . -type f -name "*.pyc" -delete
|
|
nosetests
|
|
|
|
[testenv:py27-postgres]
|
|
deps = -r{toxinidir}/requirements.txt
|
|
-r{toxinidir}/test-requirements.txt
|
|
postgres: psycopg2
|
|
|
|
[testenv:pypy-postgres]
|
|
deps = -r{toxinidir}/requirements.txt
|
|
-r{toxinidir}/test-requirements.txt
|
|
postgres: psycopg2
|
|
|
|
[testenv:pep8]
|
|
commands = flake8
|
|
|
|
[testenv:venv]
|
|
# TODO: remove once infra supports constraints for this target
|
|
install_command = pip install -U {opts} {packages}
|
|
commands = {posargs}
|
|
|
|
[flake8]
|
|
max-line-length = 120
|
|
# TODO: ignored checks should be enabled in the future
|
|
# H201 no 'except:' at least use 'except Exception:'
|
|
# H405 multi line docstring summary not separated with an empty line
|
|
ignore = F821,H201,H405
|
|
exclude=.venv,.git,.tox,dist,*openstack/common*,*egg,build
|