70ec638ecd
Change-Id: I861b3c9fe7a6215bd9f6efd8c631b50a63f5eb88
34 lines
730 B
INI
34 lines
730 B
INI
[tox]
|
|
minversion = 1.6
|
|
envlist = py26,py27,pep8
|
|
skipsdist = False
|
|
|
|
[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/*
|