Skip to content

Commit 439dfbf

Browse files
committed
Python-314{-minimal} images are not GA yet.
Skipping some tests Signed-off-by: Petr "Stone" Hracek <phracek@redhat.com>
1 parent 15ed630 commit 439dfbf

2 files changed

Lines changed: 4 additions & 0 deletions

File tree

test/conftest.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,3 +116,5 @@ def skip_helm_charts_tests():
116116
VARS.VERSION == "3.12-minimal" and VARS.OS == "rhel8"
117117
):
118118
skip(f"Skipping Helm Charts tests for {VARS.VERSION} on {VARS.OS}.")
119+
if VARS.VERSION in ("3.14", "3.14-minimal") and VARS.OS in ("rhel9", "rhel10"):
120+
skip(f"Skipping Helm Charts tests for {VARS.VERSION} on {VARS.OS}. The image is not GA available yet.")

test/test_ocp_imagestreams_quickstart.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ def teardown_method(self):
2020
"template", ["django.json", "django-postgresql-persistent.json"]
2121
)
2222
def test_python_template_inside_cluster(self, template):
23+
if VARS.VERSION in ("3.14", "3.14-minimal"):
24+
pytest.skip(f"Testing templates for {VARS.VERSION} is not yet GA.")
2325
if self.oc_api.shared_cluster:
2426
assert self.oc_api.upload_image_to_external_registry(
2527
VARS.DEPLOYED_PSQL_IMAGE, VARS.IMAGE_TAG

0 commit comments

Comments
 (0)