Merge "Removing the decorator 'flaky' from neutron and nova tests"

This commit is contained in:
Zuul 2023-01-19 16:02:50 +00:00 committed by Gerrit Code Review
commit d5ded271d5
2 changed files with 0 additions and 6 deletions

View File

@ -21,7 +21,6 @@ import typing
import time
from oslo_log import log
import pytest
import testtools
import tobiko
@ -758,7 +757,6 @@ 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

@ -213,7 +213,6 @@ class UbuntuMinimalServerStackFixture(CloudInitServerStackFixture,
pass
@pytest.mark.flaky(reruns=2, reruns_delay=60)
class UbuntuMinimalServerTest(BaseServerTest):
__test__ = True
stack = tobiko.required_fixture(UbuntuMinimalServerStackFixture)
@ -234,7 +233,6 @@ class FedoraServerStackFixture(CloudInitServerStackFixture,
pass
@pytest.mark.flaky(reruns=2, reruns_delay=60)
class FedoraServerTest(BaseServerTest):
__test__ = True
stack = tobiko.required_fixture(FedoraServerStackFixture)
@ -245,7 +243,6 @@ class CentosServerStackFixture(CloudInitServerStackFixture,
pass
@pytest.mark.flaky(reruns=2, reruns_delay=60)
class CentosServerTest(BaseServerTest):
__test__ = True
stack = tobiko.required_fixture(CentosServerStackFixture)
@ -256,7 +253,6 @@ class RedhatServerStackFixture(CloudInitServerStackFixture,
pass
@pytest.mark.flaky(reruns=2, reruns_delay=60)
class RedhatServerTest(BaseServerTest):
__test__ = True
stack = tobiko.required_fixture(RedhatServerStackFixture)