From 6a700b0e7954319fdf17a5e3a79f7fa3079cef68 Mon Sep 17 00:00:00 2001 From: Martin Pitt Date: Mon, 3 Jul 2023 10:21:06 +0200 Subject: [PATCH] XXX debug/amplify testCreatePodUser --- packit.yaml | 22 ---------------------- test/check-application | 15 +++++++++++++++ 2 files changed, 15 insertions(+), 22 deletions(-) diff --git a/packit.yaml b/packit.yaml index e7c9c9602..1af4f24de 100644 --- a/packit.yaml +++ b/packit.yaml @@ -16,28 +16,6 @@ srpm_build_deps: - npm jobs: - - job: copr_build - trigger: pull_request - targets: - - fedora-37 - - fedora-38 - - fedora-latest-aarch64 - - fedora-development - - centos-stream-9-x86_64 - - centos-stream-9-aarch64 - - centos-stream-8-x86_64 - - - job: tests - trigger: pull_request - targets: - - fedora-37 - - fedora-38 - - fedora-latest-aarch64 - - fedora-development - - centos-stream-9-x86_64 - - centos-stream-9-aarch64 - - centos-stream-8-x86_64 - - job: copr_build trigger: release owner: "@cockpit" diff --git a/test/check-application b/test/check-application index 232ebf4f4..b7425d1da 100755 --- a/test/check-application +++ b/test/check-application @@ -2572,6 +2572,18 @@ class TestApplication(testlib.MachineCase): def testCreatePodUser(self): self._createPod(False) + def testCreatePodUser2(self): + self._createPod(False) + + def testCreatePodUser3(self): + self._createPod(False) + + def testCreatePodUser4(self): + self._createPod(False) + + def testCreatePodUser5(self): + self._createPod(False) + def _createPod(self, auth): b = self.browser m = self.machine @@ -2619,6 +2631,9 @@ class TestApplication(testlib.MachineCase): b.set_file_autocomplete_val("#create-pod-dialog-volume-1 .pf-v5-c-select", rwdir) b.set_input_text('#create-pod-dialog-volume-1-container-path', '/tmp/rw') + b.eval_js('window.debugging = "podman"') + b.cdp.trace = True + b.click("#create-pod-create-btn") b.set_val("#containers-containers-filter", "all") self.waitPodContainer(pod_name, [])