Skip to content

Commit 007af8b

Browse files
committed
Anotate tests with required capability ZYNC
1 parent 17bbdf2 commit 007af8b

3 files changed

Lines changed: 6 additions & 1 deletion

File tree

testsuite/tests/custom_tenant/test_custom_tenant.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,11 @@
66
import pytest
77

88
from testsuite import rawobj, resilient
9+
from testsuite.capabilities import Capability
910
from testsuite.utils import blame
1011

12+
pytestmark = pytest.mark.required_capabilities(Capability.ZYNC)
13+
1114

1215
@pytest.fixture(scope="session")
1316
def threescale(custom_tenant, testconfig):

testsuite/tests/grafana/test_dashboards.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
pytestmark = [
1010
pytest.mark.skipif(TESTED_VERSION < Version("2.9"), reason="TESTED_VERSION < Version('2.9')"),
11-
pytest.mark.required_capabilities(Capability.OCP4),
11+
pytest.mark.required_capabilities(Capability.OCP4, Capability.ZYNC),
1212
pytest.mark.issue("https://issues.redhat.com/browse/THREESCALE-7961"),
1313
]
1414

testsuite/tests/system/test_generic_http.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,14 @@
55
from threescale_api.resources import Service
66

77
from testsuite import rawobj
8+
from testsuite.capabilities import Capability
89
from testsuite.mockserver import Mockserver
910
from testsuite.utils import blame
1011

1112
pytestmark = [
1213
pytest.mark.issue("https://issues.redhat.com/browse/THREESCALE-2665"),
1314
pytest.mark.nopersistence, # Tests relies on new application creation.
15+
pytest.mark.required_capabilities(Capability.ZYNC),
1416
]
1517

1618

0 commit comments

Comments
 (0)