From 018a6abd19c5eb32d6073c53be3a995f5fb83ed4 Mon Sep 17 00:00:00 2001 From: Bartek Grzybowski Date: Thu, 8 Apr 2021 16:20:24 +0200 Subject: [MOLECULE 3.3.0] Upgrade linters Molecule setup In 3.x.x version family of Molecule the syntax for linters invocation has been changed. Ref.: https://molecule.readthedocs.io/en/latest/configuration.html#lint Change-Id: I82d1fd996eb5853953ea6bc74dcbb88a485a2084 Issue-ID: OOM-2722 Signed-off-by: Bartek Grzybowski --- .../test/play-infrastructure/molecule/default/molecule.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'ansible/test/play-infrastructure/molecule/default') diff --git a/ansible/test/play-infrastructure/molecule/default/molecule.yml b/ansible/test/play-infrastructure/molecule/default/molecule.yml index c4b7901a..1098dc80 100644 --- a/ansible/test/play-infrastructure/molecule/default/molecule.yml +++ b/ansible/test/play-infrastructure/molecule/default/molecule.yml @@ -3,8 +3,11 @@ dependency: name: galaxy driver: name: docker -lint: - name: yamllint +lint: | + set -e + yamllint . + ansible-lint . + flake8 platforms: - name: infrastructure-server image: molecule-${PREBUILD_PLATFORM_DISTRO:-centos}:${PREBUILD_DISTRO_VERSION:-centos7.6} @@ -43,8 +46,6 @@ provisioner: inventory: links: group_vars: ../../../../group_vars - lint: - name: ansible-lint scenario: name: default test_sequence: @@ -67,5 +68,3 @@ scenario: - destroy verifier: name: testinfra - lint: - name: flake8 -- cgit 1.2.3-korg