elastic-recheck/tox.ini
Sorin Sbarnea f68a8719af Bumped flake8
- Upgraded hacking(flake8)
- Added more modern tox linters environment (pep8 alias)
- Temporary added skips for broken newer rules
- Fixed few basic rule violations
- Moved flake8 config to setup.cfg (tox.ini is not recommended)

Change-Id: I75b3ce5d2ce965a9dc5bdfaa49b2aacd8f0195ad
2020-05-23 08:54:14 +01:00

59 lines
1.7 KiB
INI

[tox]
minversion = 1.6
envlist = linters,py38,py37,py36,py27,queries,docs
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 = python setup.py testr --slowest --testr-args='{posargs} tests.unit'
[testenv:functional]
basepython = python3
commands = python setup.py testr --slowest --testr-args='{posargs} tests.functional'
[testenv:queries]
basepython = python3
commands = python setup.py testr --slowest --testr-args='{posargs} tests.functional.test_queries'
[testenv:venv]
basepython = python3
commands = {posargs}
[testenv:cover]
basepython = python3
commands = python setup.py test --coverage --coverage-package-name='elastic_recheck' --testr-args='{posargs} tests.unit'
[testenv:run]
basepython = python3
# test to run the bot as a non voting foreground process
commands = elastic-recheck -f -n --noirc elasticRecheck.conf
[testenv:docs]
basepython = python3
deps = -r{toxinidir}/doc/requirements.txt
commands = sphinx-build -b html -W doc/source doc/build/html
[testenv:bindep]
basepython = python3
# Do not install any requirements. We want this to be fast and work even if
# system dependencies are missing, since it's used to tell you what system
# dependencies are missing! This also means that bindep must be installed
# separately, outside of the requirements files.
deps = bindep
commands = bindep test
[testenv:linters]
basepython = python3
commands = flake8
# deprecated, use linters instead
[testenv:pep8]
basepython = python3
envdir = {toxworkdir}/linters
commands = {[testenv:linters]commands}