fuel-octane/tox.ini
janonymous a3c03f5acd py26 is no longer supported by Infra's CI
Python 2.6 support would be dropped by
Infra team from mitaka,CI would no longer be testing it,
so projects should drop it too.

Change-Id: I462d7fe96118bd9cfbb5f6a9f00453532aa940b8
2015-12-26 13:51:46 +05:30

34 lines
735 B
INI

[tox]
minversion = 1.6
envlist = pep8,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 {posargs}
[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/*