Skip to content

Commit ba8623d

Browse files
authored
Merge branch 'cnv-4.20' into testGuestLoadMetrics-cnv-4.20
2 parents d84ef06 + 218aef5 commit ba8623d

20 files changed

+71
-20
lines changed

tests/install_upgrade_operators/crds_cluster_readers_role/test_crds_cluster_readers_role.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,14 @@
1212

1313
LOGGER = logging.getLogger(__name__)
1414

15-
pytestmark = [pytest.mark.sno, pytest.mark.gating, pytest.mark.arm64, pytest.mark.s390x, pytest.mark.conformance]
15+
pytestmark = [
16+
pytest.mark.sno,
17+
pytest.mark.gating,
18+
pytest.mark.arm64,
19+
pytest.mark.s390x,
20+
pytest.mark.conformance,
21+
pytest.mark.skip_must_gather_collection,
22+
]
1623

1724

1825
@retry(

tests/install_upgrade_operators/csv/test_csv.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,13 @@
33
import pytest
44
from ocp_resources.cluster_service_version import ClusterServiceVersion
55

6-
pytestmark = [pytest.mark.post_upgrade, pytest.mark.sno, pytest.mark.arm64, pytest.mark.s390x]
6+
pytestmark = [
7+
pytest.mark.post_upgrade,
8+
pytest.mark.sno,
9+
pytest.mark.arm64,
10+
pytest.mark.s390x,
11+
pytest.mark.skip_must_gather_collection,
12+
]
713

814
# Check CSV properties like keywords, title, provided by, links etc.
915

tests/install_upgrade_operators/csv/test_hco_api_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import pytest
22
from ocp_resources.resource import Resource
33

4-
pytestmark = [pytest.mark.sno, pytest.mark.s390x]
4+
pytestmark = [pytest.mark.sno, pytest.mark.s390x, pytest.mark.skip_must_gather_collection]
55

66

77
@pytest.mark.polarion("CNV-5832")

tests/install_upgrade_operators/csv/test_hco_cr_explainable.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import pytest
44
from pyhelper_utils.shell import run_command
55

6-
pytestmark = [pytest.mark.sno, pytest.mark.arm64, pytest.mark.s390x]
6+
pytestmark = [pytest.mark.sno, pytest.mark.arm64, pytest.mark.s390x, pytest.mark.skip_must_gather_collection]
77

88

99
@pytest.mark.polarion("CNV-5884")

tests/install_upgrade_operators/csv/test_immutable_image_using_sha.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import pytest
22

3-
pytestmark = [pytest.mark.sno, pytest.mark.s390x]
3+
pytestmark = [pytest.mark.sno, pytest.mark.s390x, pytest.mark.skip_must_gather_collection]
44

55

66
@pytest.mark.polarion("CNV-4751")

tests/install_upgrade_operators/csv/test_subscription_channels.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import pytest
22

3-
pytestmark = [pytest.mark.sno, pytest.mark.s390x]
3+
pytestmark = [pytest.mark.sno, pytest.mark.s390x, pytest.mark.skip_must_gather_collection]
44

55

66
@pytest.mark.polarion("CNV-7169")

tests/install_upgrade_operators/daemonset/test_daemonset_params.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,13 @@
33
from utilities.constants import ALL_CNV_DAEMONSETS, ALL_CNV_DAEMONSETS_NO_HPP_CSI
44
from utilities.infra import get_daemonsets
55

6-
pytestmark = [pytest.mark.post_upgrade, pytest.mark.sno, pytest.mark.arm64, pytest.mark.s390x]
6+
pytestmark = [
7+
pytest.mark.post_upgrade,
8+
pytest.mark.sno,
9+
pytest.mark.arm64,
10+
pytest.mark.s390x,
11+
pytest.mark.skip_must_gather_collection,
12+
]
713

814

915
@pytest.fixture(scope="module")

tests/install_upgrade_operators/deployment/test_hco_deployment_params.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ def test_cnv_deployment_priority_class_name(
7676
)
7777

7878

79+
@pytest.mark.skip_must_gather_collection
7980
@pytest.mark.gating
8081
@pytest.mark.conformance
8182
@pytest.mark.polarion("CNV-8289")

tests/install_upgrade_operators/feature_gates/test_default_featuregates.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
)
2525
from utilities.constants import CDI_KUBEVIRT_HYPERCONVERGED, KUBEVIRT_HCO_NAME
2626

27-
pytestmark = [pytest.mark.post_upgrade, pytest.mark.sno, pytest.mark.s390x]
27+
pytestmark = [pytest.mark.post_upgrade, pytest.mark.sno, pytest.mark.s390x, pytest.mark.skip_must_gather_collection]
2828

2929
LOGGER = logging.getLogger(__name__)
3030

tests/install_upgrade_operators/feature_gates/test_featuregate_reconcile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
KUBEVIRT_KUBEVIRT_HYPERCONVERGED,
2020
)
2121

22-
pytestmark = [pytest.mark.sno, pytest.mark.s390x]
22+
pytestmark = [pytest.mark.sno, pytest.mark.s390x, pytest.mark.skip_must_gather_collection]
2323

2424

2525
class TestHardcodedFeatureGates:

0 commit comments

Comments
 (0)