8980f25c63
We're seeing a lot of gate failures due to race conditions that are causing various failures (dhcp agent not starting in time, iptables rules not being added in time etc.) To avoid recreating tempest, lets use tempest to test using the networking api tests. Change-Id: I624d1c7ebbc191b1ddb89eef22dd120df6bb5415
39 lines
1.2 KiB
YAML
39 lines
1.2 KiB
YAML
---
|
|
# Copyright 2015, Rackspace US, Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
# Packages need to be installed outside
|
|
# of venv to be usable by Ansible
|
|
|
|
- name: Test neutron
|
|
hosts: neutron_all
|
|
user: root
|
|
gather_facts: true
|
|
tasks:
|
|
- name: Run tempest
|
|
shell: |
|
|
. {{ tempest_venv_bin }}/activate
|
|
{{ tempest_venv_bin | dirname }}/run_tempest.sh --no-virtual-env --serial tempest.api.network
|
|
register: run_tempest
|
|
until: run_tempest|success
|
|
retries: 3
|
|
delay: 5
|
|
|
|
post_tasks:
|
|
- include: test-calico-functional.yml
|
|
when:
|
|
- "{{ neutron_plugin_type == 'ml2.calico' }}"
|
|
vars_files:
|
|
- common/test-vars.yml
|