DNM - ipv6 testing

Change-Id: I0e1e695eb266665280f01847eab1771a9904ff06
This commit is contained in:
Eric K 2019-08-05 16:39:20 -07:00
parent 64fae6885c
commit 0d90b11e26
2 changed files with 22 additions and 20 deletions

View File

@ -163,22 +163,22 @@
USE_PYTHON3: true
- project:
templates:
- check-requirements
- openstack-cover-jobs
- openstack-lower-constraints-jobs
- openstack-python-jobs
- openstack-python3-train-jobs
- release-notes-jobs-python3
- publish-openstack-docs-pti
- periodic-stable-jobs
# templates:
# - check-requirements
# - openstack-cover-jobs
# - openstack-lower-constraints-jobs
# - openstack-python-jobs
# - openstack-python3-train-jobs
# - release-notes-jobs-python3
# - publish-openstack-docs-pti
# - periodic-stable-jobs
check:
jobs:
- congress-tempest-py2-mysql
- congress-tempest-py3-mysql
- congress-tempest-replicated-postgresql
- congress-tempest-py2-JsonIngester
- congress-tempest-py3-JsonIngester
# - congress-tempest-py2-mysql
# - congress-tempest-py3-mysql
# - congress-tempest-replicated-postgresql
# - congress-tempest-py2-JsonIngester
# - congress-tempest-py3-JsonIngester
- congress-tempest-ipv6-only
# Note: the above jobs most likely provides sufficient coverage
# - congress-tempest-py2-postgresql

View File

@ -357,9 +357,10 @@ function start_congress_service_and_check {
fi
echo "Waiting for Congress to start..."
if ! timeout $SERVICE_TIMEOUT sh -c "while ! wget --no-proxy -q -O- http://$CONGRESS_HOST:$CONGRESS_PORT; do sleep 1; done"; then
die $LINENO "Congress did not start"
fi
sleep 200
# if ! timeout $SERVICE_TIMEOUT sh -c "while ! wget --no-proxy -q -O- http://$CONGRESS_HOST:$CONGRESS_PORT; do sleep 1; done"; then
# die $LINENO "Congress did not start"
# fi
# Expose encryption key to tempest test launched replica instances
# WARNING: this setting deploys an insecure setup meant for gate-test only
@ -383,9 +384,10 @@ function start_congress_service_and_check {
function _wait_for_congress {
echo "Waiting for Congress to start..."
if ! timeout $SERVICE_TIMEOUT sh -c "while ! wget --no-proxy -q -O- http://$CONGRESS_HOST:$CONGRESS_PORT; do sleep 1; done"; then
die $LINENO "Congress did not start"
fi
sleep 200
# if ! timeout $SERVICE_TIMEOUT sh -c "while ! wget --no-proxy -q -O- http://$CONGRESS_HOST:$CONGRESS_PORT; do sleep 1; done"; then
# die $LINENO "Congress did not start"
# fi
}