fuel-octane/tox.ini
Alexey Stepanov 1bde0c4f1b Prepare coverage target to gating
1. Use minumal level: 65%
2. Write html report for gates logs page

Change-Id: Icb5d570cf0af84780670915dfaf9f0a385fb509e
2016-09-13 09:51:04 +00:00

37 lines
817 B
INI

[tox]
minversion = 1.6
envlist = pep8,py26,py27
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 --cov-report=
coverage html -d {envlogdir}
coverage report --fail-under 50
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/*