From f85e9e4b72f6daba8ea1bd0f5931e69bd1c7574a Mon Sep 17 00:00:00 2001 From: Major Hayden Date: Tue, 16 Aug 2016 10:40:43 -0500 Subject: [PATCH] Skip SNMPv1/2 (V-38660) checks in gate The CI gate job images have SNMPv1/2 configurations applied and they are in the process of being removed. This patch should get the openstack-ansible-security gate jobs unblocked by skipping V-38660 temporarily. When https://review.openstack.org/#/c/354819/ merges and new images are deployed, this task won't need to be skipped. Change-Id: I2bad2ce8bb5ba73356d224ce1093bc4f19fe75b9 --- tox.ini | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/tox.ini b/tox.ini index 5ac1deac..5f9234d9 100644 --- a/tox.ini +++ b/tox.ini @@ -167,21 +167,24 @@ commands = # NOTE(odyssey4me): We have to skip V-38462 as openstack-infra are now # building images with apt config # Apt::Get::AllowUnauthenticated set to true. + # NOTE(mhayden): Skipping V-38660 since openstack-infra has SNMP v1/2 in + # the images. This can be added back in once + # https://review.openstack.org/#/c/354819/ merges. ansible-playbook --check \ -i {toxinidir}/tests/inventory \ -e "rolename={toxinidir}" \ -e "install_test_packages=True" \ - --skip-tag V-38462 \ + --skip-tag V-38462,V-38660 \ {toxinidir}/tests/test_check.yml ansible-playbook -i {toxinidir}/tests/inventory \ -e "rolename={toxinidir}" \ -e "install_test_packages=True" \ - --skip-tag V-38462 \ + --skip-tag V-38462,V-38660 \ {toxinidir}/tests/test.yml bash -c 'ansible-playbook -i {toxinidir}/tests/inventory \ -e "rolename={toxinidir}" \ -e "install_test_packages=True" \ - --skip-tag V-38462 \ + --skip-tag V-38462,V-38660 \ {toxinidir}/tests/test.yml \ | tee /tmp/idempotence_test_output.txt' bash -c 'grep -q "changed=0.*failed=0" /tmp/idempotence_test_output.txt \