Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: Wait a bit on ubuntu-2204 before running the second health check #1887

Merged
merged 1 commit into from
Oct 22, 2024
Merged
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
2 changes: 2 additions & 0 deletions test/check-application
Original file line number Diff line number Diff line change
Expand Up @@ -2648,6 +2648,8 @@ class TestApplication(testlib.MachineCase):
b.wait_not_present(".ct-listing-panel-body tbody:nth-of-type(2)")

# Trigger run manually, adds one more healthy run
if self.machine.image == "ubuntu-2204":
time.sleep(5) # wait a bit, otherwise the request might be ignored
self.performContainerAction("healthy", "Run health check")
b.wait_visible(".ct-listing-panel-body tbody:nth-of-type(2) svg.green")
b.wait_not_present(".ct-listing-panel-body tbody:nth-of-type(3)")
Expand Down