mirror of
https://github.com/krkn-chaos/krkn.git
synced 2026-02-14 09:59:59 +00:00
This commit: - Adds a pointer to a new blog which emphasizes the importance of making chaos part of Perf/Scale test runs. - Bumps up the allowed max-line-length for the linters.
25 lines
450 B
INI
25 lines
450 B
INI
[tox]
|
|
envlist = pep8
|
|
|
|
[testenv]
|
|
usedevelop = True
|
|
setenv =
|
|
VIRTUAL_ENV={envdir}
|
|
deps = -r{toxinidir}/test-requirements.txt
|
|
commands = python setup.py develop
|
|
|
|
[testenv:pep8]
|
|
basepython = python
|
|
commands = flake8 {posargs}
|
|
|
|
[testenv:venv]
|
|
commands = {posargs}
|
|
|
|
[flake8]
|
|
# E123, E125 skipped as they are invalid PEP-8.
|
|
show-source = True
|
|
max-line-length = 120
|
|
ignore = E123,E125
|
|
builtins = _
|
|
exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,build
|