Mark flaky tests

- PortLogsTest.test_nova_port_notification_on_activate
- MetadataAgentTest.test_metadata_service_restart
- L3HARouterTest.test_router_is_scheduled_on_l3_agents

Change-Id: Ifa9075ca3ed56e6e3f8cca1a74b2aaf1e0c21656
This commit is contained in:
Federico Ressi 2021-02-04 13:21:58 +01:00
parent 2db3fdc33e
commit 3f3593bf99
4 changed files with 6 additions and 0 deletions

View File

@ -18,6 +18,7 @@ import re
import typing # noqa
from oslo_log import log
import pytest
import testtools
import tobiko
@ -717,6 +718,7 @@ class MetadataAgentTest(BaseAgentTest):
"Metadata server reached from Nova server:\n"
f"{curl_output}")
@pytest.mark.flaky(reruns=5, reruns_delay=120)
def test_metadata_service_restart(self):
# Ensure service is up
self.start_agent()

View File

@ -18,6 +18,7 @@ import typing
import netaddr
from oslo_log import log
import pytest
import testtools
import tobiko
@ -156,6 +157,7 @@ class PortLogsTest(testtools.TestCase):
new_lines = log_digger.find_new_lines()
self.assert_has_event(new_lines, 'network-vif-unplugged')
@pytest.mark.flaky(reruns=5, reruns_delay=120)
def test_nova_port_notification_on_activate(self):
self.stack.ensure_server_status('SHUTOFF')
log_digger = topology.get_log_file_digger(

View File

@ -14,6 +14,7 @@
# under the License.
from __future__ import absolute_import
import pytest
import testtools
import tobiko
@ -132,6 +133,7 @@ class L3HARouterTest(RouterTest):
#: Resources stack with Nova server to send messages to
stack = tobiko.required_setup_fixture(stacks.L3haServerStackFixture)
@pytest.mark.flaky(reruns=5, reruns_delay=120)
@neutron.skip_if_missing_networking_extensions('l3_agent_scheduler')
def test_router_is_scheduled_on_l3_agents(self):
master_agent, backup_agents = get_master_and_backup_agents(