Skip to content
Draft
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 test/check-application
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,8 @@ class TestApplication(testlib.MachineCase):
self.execute('for c in $(podman ps -aq); do echo "---- $c ----" >&2; podman logs $c >&2; done',
system=auth)

super().tearDown()

# HACK: avoid failing tests on oopses when cleaning up containers below
if self.browser.have_test_api():
self.browser.switch_to_top()
Expand All @@ -193,8 +195,6 @@ class TestApplication(testlib.MachineCase):
done
""")

super().tearDown()

def podman_version(self) -> tuple[int, ...]:
version = self.execute("podman -v", system=False).strip().split(' ')[-1]
# HACK: handle possible rc versions such as 4.4.0-rc2
Expand Down