Skip to content

Commit

Permalink
chore(test): blocking issue was fixed (podman-desktop#9902)
Browse files Browse the repository at this point in the history
Signed-off-by: Vladimir Lazar <[email protected]>
  • Loading branch information
cbr7 authored Nov 14, 2024
1 parent caa6af4 commit 7eff1aa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

import { expect as playExpect, test } from '../utility/fixtures';
import { createPodmanMachineFromCLI, deletePodmanMachine } from '../utility/operations';
import { isLinux, isMac } from '../utility/platform';
import { isLinux } from '../utility/platform';
import { waitForPodmanMachineStartup } from '../utility/wait';

const PODMAN_MACHINE_NAME: string = 'podman-machine-default';
Expand All @@ -28,11 +28,6 @@ test.skip(
'Tests suite should not run on Linux platform or if TEST_PODMAN_MACHINE is not true',
);

test.skip(
isMac,
'Due to issue https://github.com/containers/podman-desktop/issues/8984 which causes problems on cicd on macOs this test suite is deactived on macs until a fix is provided',
);

test.beforeAll(async ({ runner, welcomePage, page }) => {
test.setTimeout(120_000);
runner.setVideoAndTraceName('podman-machine-dashboard');
Expand Down
7 changes: 1 addition & 6 deletions tests/playwright/src/specs/podman-machine-onboarding.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import { ResourcesPage } from '../model/pages/resources-page';
import type { SettingsBar } from '../model/pages/settings-bar';
import { expect as playExpect, test } from '../utility/fixtures';
import { createPodmanMachineFromCLI, deletePodmanMachine } from '../utility/operations';
import { isLinux, isMac } from '../utility/platform';
import { isLinux } from '../utility/platform';
import { waitForPodmanMachineStartup } from '../utility/wait';

const PODMAN_MACHINE_STARTUP_TIMEOUT: number = 360_000;
Expand All @@ -48,11 +48,6 @@ test.skip(
'Tests suite should not run on Linux platform or if TEST_PODMAN_MACHINE is not true',
);

test.skip(
isMac,
'Due to issue https://github.com/containers/podman-desktop/issues/8984 which causes problems on cicd on macOs this test suite is deactived on macs until a fix is provided',
);

test.beforeAll(async ({ runner, welcomePage, page }) => {
test.setTimeout(120_000);
runner.setVideoAndTraceName('podman-machine-e2e');
Expand Down

0 comments on commit 7eff1aa

Please sign in to comment.