X-Git-Url: https://gerrit.linuxfoundation.org/infra/gitweb?a=blobdiff_plain;f=tox.ini;h=d9ebf87f76eb7f5b588c3ffc9b1301ccb94e6889;hb=HEAD;hp=54b2761de54a3bd9a20f4522993c994e28860984;hpb=227dc247632240097740bf3cfece2829bfd3cf14;p=releng%2Fglobal-jjb.git diff --git a/tox.ini b/tox.ini index 54b2761d..3572c141 100644 --- a/tox.ini +++ b/tox.ini @@ -1,63 +1,59 @@ [tox] minversion = 1.6 envlist = - coala, ensure-documented, jjb, jjb-compare-xml, jjb-latest, jjb-version, license, + bashate, pre-commit -skipsdist = true -passenv = TOX_WORK_DIR -toxworkdir = {env:TOX_WORK_DIR:/tmp/v} - -[testenv:coala] -basepython = python3 -deps = - coala - coala-bears - pygments~=2.3.1 - # request-2.22.0 does not work with python-3.4.9 - requests~=2.21.0 - # Markdown lint requires nodejs - nodeenv - numpy -commands = - nodeenv -p - npm install --global remark-cli remark-lint write-good - python3 -m nltk.downloader punkt maxent_treebank_pos_tagger averaged_perceptron_tagger - coala --non-interactive +skipsdist = True [testenv:docs] +basepython = python3 deps = -rrequirements.txt +allowlist_externals = + git commands = + # Full repository depth required for docs job to run (release notes) + git fetch --unshallow sphinx-build -W -b html -n -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/html [testenv:ensure-documented] +allowlist_externals = + ./ensure-documented.sh commands = ./ensure-documented.sh [testenv:jjb] +basepython = python3 deps = - jenkins-job-builder==2.8.0 + jenkins-job-builder==6.3.0 + # RELENG-5179 (undeclared dependency by stevedore) + setuptools commands = jenkins-jobs -l DEBUG test --recursive -o {toxinidir}/archives/job-configs {toxinidir}/jjb:{toxinidir}/.jjb-test [testenv:jjb-compare-xml] +basepython = python3 deps = - jenkins-job-builder + jenkins-job-builder==6.3.0 +allowlist_externals = + ./jjb-compare-xml.sh commands = ./jjb-compare-xml.sh [testenv:jjb-latest] +basepython = python3 deps = jenkins-job-builder commands = jenkins-jobs -l DEBUG test --recursive -o {toxinidir}/archives/job-configs {toxinidir}/jjb:{toxinidir}/.jjb-test [testenv:jjb-version] +basepython = python3 commands = python {toxinidir}/check_jjb_version.py [testenv:license] @@ -65,9 +61,47 @@ deps = lftools commands = lftools license check-dir -r '.+' shell [testenv:pre-commit] -deps = pre-commit +basepython = python3 +allowlist_externals = + /bin/sh +deps = + pre-commit +passenv = HOME +commands = + pre-commit run --all-files --show-diff-on-failure + /bin/sh -c 'if ! git config --get user.name > /dev/null; then \ + git config --global --add user.name "CI"; \ + touch .git/REMOVE_USERNAME; fi' + /bin/sh -c 'if ! git config --get user.email > /dev/null; then \ + git config --global --add user.email "ci@example.org"; \ + touch .git/REMOVE_USEREMAIL; fi' + /bin/sh -c "if [ -f .git/COMMIT_EDITMSG ]; then \ + cp .git/COMMIT_EDITMSG .git/COMMIT_MSGTOX; else \ + git log HEAD -n1 | tail -n +5 | cut -c 5- > .git/COMMIT_MSGTOX; fi" + pre-commit run gitlint --hook-stage commit-msg --commit-msg-filename .git/COMMIT_MSGTOX + /bin/sh -c "rm -f .git/COMMIT_MSGTOX" + /bin/sh -c "if [ -f .git/REMOVE_USERNAME ]; then \ + git config --global --unset user.name; \ + rm -f .git/REMOVE_USERNAME; fi" + /bin/sh -c "if [ -f .git/REMOVE_USEREMAIL ]; then \ + git config --global --unset user.email; \ + rm -f .git/REMOVE_USEREMAIL; fi" + +[testenv:bashate] +basepython = python3 +deps = + bashate +allowlist_externals = find + sh +setenv = + RULES_IGNORED = E001,E002,E003,E004,E005,E007,E008,E009,E010,E011,E012,E013,E014,E015,E016,E017,E018,E019,E020,E021,E022,E023,E024,E025,E026,E027,E028,E029,E030,E031,E032,E033,E034,E035,E036,E037,E038,E039,E040,E041,E042,E043,E044 +#RULES_IGNORED = `seq -s',E' -w 0 100| cut -d, -f2-6,8-45)` commands = - pre-commit run --all-files + # forbid lines > 120 char + sh -c "find . -not -path '*/\.*' -name '*.sh' -exec bashate -e E006 -i $RULES_IGNORED --max-line-length 120 \{\} +" + # perform bashate and warn lines > 80 char + #find . -not -path '*/\.*' -name *.sh -exec bashate \{\} + + #The option --max-line-length 80 is used by default. ######### # Tools # @@ -75,7 +109,7 @@ commands = [testenv:jenkins-jobs] deps = - jenkins-job-builder{env:JJB_VERSION_OP:~=}{env:JJB_VERSION:2.8.0} + jenkins-job-builder{env:JJB_VERSION_OP:~=}{env:JJB_VERSION:6.3.0} commands = jenkins-jobs {posargs:--help} @@ -88,5 +122,5 @@ deps = python-openstackclient{env:OPENSTACK_VERSION_OP:~=}{env:OPENSTACK_VERSION commands = openstack {posargs:--help} [testenv:reno] -deps = reno{env:RENO_VERSION_OP:~=}{env:RENO_VERSION:2.10.0} +deps = reno{env:RENO_VERSION_OP:~=}{env:RENO_VERSION:2.11.2} commands = reno {posargs:--help}