Skip to content

Commit 301d89d

Browse files
authored
ci: remove podman install (#562)
Signed-off-by: Philippe Martin <[email protected]>
1 parent 6ff9828 commit 301d89d

File tree

2 files changed

+2
-16
lines changed

2 files changed

+2
-16
lines changed

.github/workflows/e2e-tests.yaml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -61,14 +61,6 @@ jobs:
6161
steps:
6262
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
6363

64-
# ==============================================
65-
# Installing Podman
66-
# ==============================================
67-
- name: Install Podman v5 using external action
68-
uses: redhat-actions/podman-install@15cb93f5a6b78a758fd8f4d1cecbf6651d4bcea3
69-
with:
70-
github-token: ${{ secrets.GITHUB_TOKEN }}
71-
7264
- name: Revert unprivileged user namespace restrictions in Ubuntu 24.04
7365
if: runner.os == 'Linux'
7466
run: |

tests/playwright/src/extension.spec.ts

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,7 @@
1717
***********************************************************************/
1818

1919
import type { ExtensionsPage } from '@podman-desktop/tests-playwright';
20-
import {
21-
expect as playExpect,
22-
test,
23-
RunnerOptions,
24-
waitForPodmanMachineStartup,
25-
} from '@podman-desktop/tests-playwright';
20+
import { expect as playExpect, test, RunnerOptions } from '@podman-desktop/tests-playwright';
2621
import { KubernetesDashboardDetailsPage } from './model/kd-details-page';
2722

2823
const EXTENSION_OCI_IMAGE =
@@ -53,12 +48,11 @@ test.use({
5348
}),
5449
});
5550

56-
test.beforeAll(async ({ runner, welcomePage, page }) => {
51+
test.beforeAll(async ({ runner, welcomePage }) => {
5752
test.setTimeout(80_000);
5853

5954
runner.setVideoAndTraceName('kubernetes-dashboard-e2e');
6055
await welcomePage.handleWelcomePage(true);
61-
await waitForPodmanMachineStartup(page, 80_000); // default is 30s let's increase that to 80s
6256
});
6357

6458
test.afterAll(async ({ runner }) => {

0 commit comments

Comments
 (0)