[tox] skipsdist = True envlist = pep8,py3 # NOTE(beisner): Avoid build/test env pollution by not enabling sitepackages. sitepackages = False # NOTE(beisner): Avoid false positives by not skipping missing interpreters. skip_missing_interpreters = False [testenv] setenv = VIRTUAL_ENV={envdir} PYTHONHASHSEED=0 TERM=linux [testenv:py3] basepython = python3 deps = -r{toxinidir}/test-requirements.txt commands = stestr run {posargs} [testenv:py35] basepython = python3.5 deps = -r{toxinidir}/test-requirements.txt commands = stestr run {posargs} [testenv:pep8] basepython = python3 deps = -r{toxinidir}/test-requirements.txt commands = flake8 {posargs} . [testenv:venv] basepython = python3 commands = {posargs} [flake8] # E402 ignore necessary for path append before sys module import in actions ignore = E402