Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tests/interop/test_validate_edge_site_components.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def test_check_pod_status(openshift_dyn_client):
projects = [
"open-cluster-management-agent",
"open-cluster-management-agent-addon",
"openshift-gitops",
"vp-gitops",
]
err_msg = components.check_pod_status(openshift_dyn_client, projects)
if err_msg:
Expand All @@ -59,7 +59,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", "multicloud-gitops-group-one"]
projects = ["vp-gitops", "multicloud-gitops-group-one"]
unhealthy_apps = application.get_argocd_application_status(
openshift_dyn_client, projects
)
Expand Down
4 changes: 2 additions & 2 deletions tests/interop/test_validate_hub_site_components.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def test_check_pod_status(openshift_dyn_client):
"patterns-operator",
"open-cluster-management",
"open-cluster-management-hub",
"openshift-gitops",
"vp-gitops",
"vault",
]
err_msg = components.check_pod_status(openshift_dyn_client, projects)
Expand Down Expand Up @@ -85,7 +85,7 @@ def test_validate_argocd_reachable_hub_site(openshift_dyn_client):
@pytest.mark.validate_argocd_applications_health_hub_site
def test_validate_argocd_applications_health_hub_site(openshift_dyn_client):
logger.info("Get all applications deployed by argocd on hub site")
projects = ["openshift-gitops", "multicloud-gitops-hub"]
projects = ["vp-gitops", "multicloud-gitops-hub"]
unhealthy_apps = application.get_argocd_application_status(
openshift_dyn_client, projects
)
Expand Down
Loading