Skip to content
Merged
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
1 change: 1 addition & 0 deletions newsfragments/627.internal.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix flaking tests when checking upgrades.
2 changes: 1 addition & 1 deletion tests/integration/test_networking.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ async def test_services_have_matching_labels(
label_selectors = {label: value for label, value in service.spec.selector.items()}

async for pod in kube_client.list(Pod, namespace=generated_data.ess_namespace, labels=label_selectors):
if pod.status and pod.status.phase not in ("Terminating", "Succeeded"):
if pod.status and pod.status.phase in ("Terminating", "Succeeded"):
continue # Skip terminating pods
assert service.metadata, f"Encountered a service without metadata : {service}"
assert pod.metadata, f"Encountered a pod without metadata : {pod}"
Expand Down
Loading