From 319cae25e4fa659c1d249a1643eaf8def1eed77c Mon Sep 17 00:00:00 2001 From: Mark LaBonte Date: Tue, 9 Dec 2025 13:44:57 -0500 Subject: [PATCH] Add missing project in app check --- tests/interop/test_validate_edge_site_components.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/interop/test_validate_edge_site_components.py b/tests/interop/test_validate_edge_site_components.py index 3f4c91eff..4722ea2b2 100644 --- a/tests/interop/test_validate_edge_site_components.py +++ b/tests/interop/test_validate_edge_site_components.py @@ -60,7 +60,7 @@ def test_check_pod_status(openshift_dyn_client): @pytest.mark.validate_argocd_applications_health_edge_site def test_validate_argocd_applications_health_edge_site(openshift_dyn_client): logger.info("Get all applications deployed by argocd on edge site") - projects = ["openshift-gitops"] + projects = ["openshift-gitops", "multicloud-gitops-group-one"] unhealthy_apps = application.get_argocd_application_status( openshift_dyn_client, projects )