From 5f2509ac35025faed35550ff83d212462972ddfc Mon Sep 17 00:00:00 2001 From: Federico Ressi Date: Wed, 16 Feb 2022 10:10:43 +0100 Subject: [PATCH] Mark minimal sanity test cases Change-Id: Ifa5525e82ee35b420983eba19c0a3378f16b598e --- tobiko/tests/sanity/cloud/test_nodes.py | 2 ++ tobiko/tests/sanity/neutron/test_agents.py | 2 ++ tobiko/tests/sanity/nova/test_service.py | 2 ++ 3 files changed, 6 insertions(+) diff --git a/tobiko/tests/sanity/cloud/test_nodes.py b/tobiko/tests/sanity/cloud/test_nodes.py index 6bbaf1afb..1631607c2 100644 --- a/tobiko/tests/sanity/cloud/test_nodes.py +++ b/tobiko/tests/sanity/cloud/test_nodes.py @@ -14,6 +14,7 @@ # under the License. from __future__ import absolute_import +import pytest import testtools import tobiko @@ -23,6 +24,7 @@ from tobiko.shell import sh from tobiko.openstack import topology +@pytest.mark.minimal class OpenstackNodesTest(testtools.TestCase): topology = tobiko.required_fixture( diff --git a/tobiko/tests/sanity/neutron/test_agents.py b/tobiko/tests/sanity/neutron/test_agents.py index 328b1b787..405735431 100644 --- a/tobiko/tests/sanity/neutron/test_agents.py +++ b/tobiko/tests/sanity/neutron/test_agents.py @@ -14,11 +14,13 @@ # under the License. from __future__ import absolute_import +import pytest import testtools from tobiko.openstack import tests +@pytest.mark.minimal class NeutronAgentTest(testtools.TestCase): def test_agents_are_alive(self): diff --git a/tobiko/tests/sanity/nova/test_service.py b/tobiko/tests/sanity/nova/test_service.py index c5733f124..3e8fb8939 100644 --- a/tobiko/tests/sanity/nova/test_service.py +++ b/tobiko/tests/sanity/nova/test_service.py @@ -14,11 +14,13 @@ # under the License. from __future__ import absolute_import +import pytest import testtools from tobiko.openstack import nova +@pytest.mark.minimal class ServiceTest(testtools.TestCase): def test_all_services_are_up(self):