X-Git-Url: https://gerrit.fd.io/r/gitweb?p=csit.git;a=blobdiff_plain;f=tox.ini;h=0e1c6bc52cf3b6a1f967a013c9353e6867a4e0ed;hp=3d4f01a56cdaabe78acdf85752d1fdde433e2264;hb=ed648e7c1f6493fd3bd01213ed0692a5b2e1a020;hpb=1bea44dbcd02babe4a2e9a03de27eba79ac82bfc diff --git a/tox.ini b/tox.ini index 3d4f01a56c..0e1c6bc52c 100644 --- a/tox.ini +++ b/tox.ini @@ -25,7 +25,10 @@ # will execute only checks defined in "pylint" tox environment. [tox] -envlist = new_line_length, line_length, autogen, pylint +# Fast and brief checkers to front, slow or verbose checkers to back. +envlist = tc_naming, tc_coverage, new_line_length, line_length, autogen, pylint, + doc_verify + # The following is needed as tox requires setup.py by default. skipsdist = true # Just a shorthand to avoid long lines. @@ -33,16 +36,17 @@ checker_dir = ./resources/libraries/bash/entry/check # TODO: Tox prints various warnings. Figure them out and fix them. -[testenv:pylint] -deps = - pylint==1.5.4 - -r ./requirements.txt +# Keep testenvs sorted alphabetically, please. + +[testenv:autogen] whitelist_externals = /bin/bash setenv = PYTHONPATH = {toxinidir} -# Run pylint, but hide its return value until python warnings are cleared. -commands = bash -c "bash {[tox]checker_dir}/pylint.sh || true" +commands = bash {[tox]checker_dir}/autogen.sh -# TODO: See FIXME in https://gerrit.fd.io/r/16423 +[testenv:doc_verify] +# Fix all documentaion error before enabling voting. +whitelist_externals = /bin/bash +commands = bash -c "bash {[tox]checker_dir}/doc_verify.sh || true" [testenv:line_length] whitelist_externals = /bin/bash @@ -56,10 +60,28 @@ whitelist_externals = /bin/bash # the checker has to remain non-voting. commands = bash -c "bash {[tox]checker_dir}/new_line.sh || true" -[testenv:autogen] +[testenv:pylint] +basepython = python3 +deps = + pylint==2.4.3 + -r ./requirements.txt whitelist_externals = /bin/bash setenv = PYTHONPATH = {toxinidir} -commands = bash {[tox]checker_dir}/autogen.sh +# Run pylint, but hide its return value until python warnings are cleared. +commands = bash -c "bash {[tox]checker_dir}/pylint.sh || true" + +# TODO: See FIXME in https://gerrit.fd.io/r/16423 + +[testenv:tc_coverage] +whitelist_externals = /bin/bash +# Coverage is not needed to be voting. +commands = bash -c "bash {[tox]checker_dir}/tc_coverage.sh || true" + +[testenv:tc_naming] +whitelist_externals = /bin/bash +commands = bash {[tox]checker_dir}/tc_naming.sh + +# Keep testenvs sorted alphabetically, please. # TODO: Migrate current docs check here. # TODO: Create voting "pylint violations should not increase" checker.