Skip to content
Closed
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/rhel-e2e-nightly-windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ jobs:
DEFAULT_PODMAN_PROVIDER: 'wsl'
DEFAULT_ENV_VARS: 'TEST_PODMAN_MACHINE=true,ELECTRON_ENABLE_INSPECT=true'
DEFAULT_PODMAN_OPTIONS: 'INIT=1,START=1,ROOTFUL=1,NETWORKING=0'
DEFAULT_EXT_TESTS_OPTIONS: 'EXT_RUN_TESTS_FROM_EXTENSION=1,EXT_RUN_TESTS_AS_ADMIN=0'
DEFAULT_EXT_TESTS_OPTIONS: 'EXT_RUN_TESTS_FROM_EXTENSION=1,EXT_RUN_TESTS_AS_ADMIN=1'
DEFAULT_EXT_REPO_OPTIONS: 'REPO=podman-desktop-rhel-ext,FORK=redhat-developer,BRANCH=main'
DEFAULT_PODMAN_VERSION: "${{ env.PD_PODMAN_VERSION || '5.6.1' }}"
DEFAULT_URL: 'https://github.com/containers/podman/releases/download/v$DEFAULT_PODMAN_VERSION/podman-$DEFAULT_PODMAN_VERSION-setup.exe'
Expand Down
8 changes: 4 additions & 4 deletions tests/playwright/src/rhel-extension.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
handleConfirmationDialog,
isCI,
isLinux,
isWindows,

Check failure on line 32 in tests/playwright/src/rhel-extension.spec.ts

View workflow job for this annotation

GitHub Actions / linter, formatters

Remove this unused import of 'isWindows'

Check failure on line 32 in tests/playwright/src/rhel-extension.spec.ts

View workflow job for this annotation

GitHub Actions / linter, formatters

'isWindows' is defined but never used
NavigationBar,
performBrowserLogin,
ResourceConnectionCardPage,
Expand Down Expand Up @@ -237,10 +237,10 @@

test.describe.serial('RHEL VMs Extension', () => {
test.skip(!!isCI && !!isLinux, 'Skipping on CI GitHub Actions for Linux runners, they are not supported');
test.skip(
!!isWindows,
'Currently there are problems iwth subscribing the RHEL machine on Azure instances as described in issue https://github.com/redhat-developer/podman-desktop-redhat-account-ext/issues/864',
);
//test.skip(

Check failure on line 240 in tests/playwright/src/rhel-extension.spec.ts

View workflow job for this annotation

GitHub Actions / linter, formatters

Remove this commented out code
// !!isWindows,
// 'Currently there are problems iwth subscribing the RHEL machine on Azure instances as described in issue https://github.com/redhat-developer/podman-desktop-redhat-account-ext/issues/864',
//);

test('Create RHEL VM', async ({ page }) => {
test.setTimeout(1_510_000);
Expand Down
Loading