793ec918ec
Change-Id: Id4baa33f334bf47619d6bd853508d6fe0b0979d5
34 lines
729 B
INI
34 lines
729 B
INI
[tox]
|
|
minversion = 1.6
|
|
envlist = py26,py27,pep8
|
|
skipsdist = True
|
|
|
|
[testenv]
|
|
usedevelop = True
|
|
install_command = pip install -U {opts} {packages}
|
|
setenv =
|
|
VIRTUAL_ENV={envdir}
|
|
deps = -r{toxinidir}/requirements.txt
|
|
-r{toxinidir}/test-requirements.txt
|
|
commands = py.test
|
|
|
|
[testenv:pep8]
|
|
commands = flake8
|
|
basepython = python2
|
|
|
|
[testenv:venv]
|
|
commands = {posargs}
|
|
basepython = python2
|
|
|
|
[testenv:cover]
|
|
commands = py.test --cov octane
|
|
basepython = python2
|
|
|
|
[flake8]
|
|
# E123, E125 skipped as they are invalid PEP-8.
|
|
# H101 - Don't force author's name on TODOs
|
|
show-source = True
|
|
ignore = E123,E125,H101
|
|
builtins = _
|
|
exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,build,octane_*,octane/tests/generate_test_nets.py,deploy/*
|