From c0b19dff29ec862c9f2c1c7a383b7395de6903a6 Mon Sep 17 00:00:00 2001 From: tomasmatus Date: Wed, 14 Aug 2024 15:26:54 +0200 Subject: [PATCH] debug CI? --- test/check-application | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test/check-application b/test/check-application index a82a06731..b84913a69 100755 --- a/test/check-application +++ b/test/check-application @@ -3066,8 +3066,11 @@ class TestApplication(testlib.MachineCase): sel = "span:not(.downloading)" b.wait(lambda: self.getContainerAttr(container_name, "State", sel) in "Created") + checkImage(b, f"{container_name}:latest", "system") + b.click("#containers-containers button.pf-v5-c-button.pf-m-primary") # "couldn't search registry" error is hidden when some local image is found + b.set_input_text("#create-image-image-select-typeahead", "") b.set_input_text("#create-image-image-select-typeahead", "localhost:80/my-busy") b.wait_not_present(".pf-v5-c-alert.pf-m-danger") b.click('button.pf-v5-c-toggle-group__button:contains("Local")') @@ -3078,8 +3081,6 @@ class TestApplication(testlib.MachineCase): b.wait_text("button.pf-v5-c-select__menu-item.pf-m-disabled", "No images found") b.wait_in_text(".pf-v5-c-alert.pf-m-danger", "couldn't search registry") - testlib.sit() - if __name__ == '__main__': testlib.test_main()