Skip V-38620 (chrony) in gate

The OpenStack CI runs ntpd in the gate images and this causes chrony
to fail on startup. This patch skips V-38620 so that chrony won't
cause gate failures.

Closes-Bug: 1629936
Change-Id: I0c67241c0725621715877e728a6c6c17d771a596
This commit is contained in:
Major Hayden 2016-10-03 11:35:50 -05:00
parent 4913b29439
commit 401ccd7d97
1 changed files with 5 additions and 3 deletions

View File

@ -142,18 +142,20 @@ commands =
# 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.
# NOTE(mhayden): Skipping V-38620 since chrony cannot start with ntpd
# running in the gate images.
ansible-playbook --check \
-i {toxinidir}/tests/inventory \
-e "install_test_packages=True" \
--skip-tag V-38462,V-38660 \
--skip-tag V-38462,V-38660,V-38620 \
{toxinidir}/tests/test_check.yml
ansible-playbook -i {toxinidir}/tests/inventory \
-e "install_test_packages=True" \
--skip-tag V-38462,V-38660 \
--skip-tag V-38462,V-38660,V-38620 \
{toxinidir}/tests/test.yml
bash -c 'ansible-playbook -i {toxinidir}/tests/inventory \
-e "install_test_packages=True" \
--skip-tag V-38462,V-38660 \
--skip-tag V-38462,V-38660,V-38620 \
{toxinidir}/tests/test.yml \
| tee /tmp/idempotence_test_output.txt'
bash -c 'grep -q "changed=0.*failed=0" /tmp/idempotence_test_output.txt \