[tox] envlist = pep8,py34,py35 skipsdist = True # 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 install_command = pip install {opts} {packages} commands = stestr run {posargs} [testenv:py34] basepython = python3.4 deps = -r{toxinidir}/test-requirements.txt # TODO: Need to write unit tests then remove the following command. # https://github.com/juju/charm-tools/issues/249 commands = /bin/true [testenv:py35] basepython = python3.5 deps = -r{toxinidir}/test-requirements.txt # TODO: Need to write unit tests then remove the following command. # https://github.com/juju/charm-tools/issues/249 commands = /bin/true [testenv:py3] basepython = python3 deps = -r{toxinidir}/test-requirements.txt # TODO: Need to write unit tests then remove the following command. # https://github.com/juju/charm-tools/issues/249 commands = /bin/true [testenv:pep8] basepython = python3 deps = -r{toxinidir}/test-requirements.txt commands = flake8 {posargs} [testenv:venv] basepython = python3 commands = {posargs} [flake8] ignore = E402,E226