From d2649cb320fc95d126a5fcbbaa11737ab15edf3a Mon Sep 17 00:00:00 2001 From: =?utf8?q?C=C3=A9dric=20Ollivier?= Date: Tue, 4 Jan 2022 23:07:08 +0100 Subject: [PATCH] Remove ansiblelint as tox entry MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit It false asks for ansible in any XtestingCI child's test requirements. Change-Id: I6cff0ba900360c97db64f519ef4055e2e18cc28c Signed-off-by: Cédric Ollivier (cherry picked from commit ee4aeafa6a7073c90e0496fb9efe147375197caf) (cherry picked from commit 1b0c4def95c5bf93462d3885a53012bc7f745173) --- .travis.yml | 2 +- tox.ini | 7 +------ 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index b5a6bf02..0214de62 100644 --- a/.travis.yml +++ b/.travis.yml @@ -23,7 +23,7 @@ jobs: include: - stage: run unit tests script: > - tox -e docs,pep8,pylint,yamllint,ansiblelint,bashate,py27,py37,cover + tox -e docs,pep8,pylint,yamllint,bashate,py27,py37,cover - stage: build xtesting images script: sudo -E bash build.sh env: diff --git a/tox.ini b/tox.ini index bd1f7d89..f0d8635f 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = docs,pep8,pylint,yamllint,ansiblelint,bashate,py27,py37,cover,perm +envlist = docs,pep8,pylint,yamllint,bashate,py27,py37,cover,perm skipsdist = True [testenv] @@ -45,11 +45,6 @@ files = commands = yamllint -s {[testenv:yamllint]files} -[testenv:ansiblelint] -basepython = python3.7 -commands = - ansible-lint -x303,305,306 ansible/site.yml - [testenv:py37] commands = nosetests xtesting/tests/unit -- 2.16.6