mirror of
https://github.com/podman-desktop/podman-desktop
synced 2026-04-21 17:47:22 +00:00
chore(test): set test suite to be retried once on failure (#14594)
Signed-off-by: Vladimir Lazar <vlazar@redhat.com>
This commit is contained in:
parent
03a07b8cb2
commit
5a31c08efd
2 changed files with 3 additions and 1 deletions
|
|
@ -68,6 +68,8 @@ for (const extension of extensionsToTest) {
|
|||
`Verification of Built-In Extension: ${extension.extensionLabelName}`,
|
||||
{ tag: ['@smoke', '@windows_sanity'] },
|
||||
() => {
|
||||
test.describe.configure({ retries: 1 });
|
||||
|
||||
test(`Check ${extension.extensionLabelName} extension is enabled and present`, async () => {
|
||||
await verifyBuiltInExtensionStatus(true, extension);
|
||||
});
|
||||
|
|
|
|||
|
|
@ -51,7 +51,7 @@ test.afterAll(async ({ runner }) => {
|
|||
await runner.close();
|
||||
});
|
||||
|
||||
test.describe.serial('Compose onboarding workflow verification', { tag: ['@smoke', '@windows_sanity'] }, () => {
|
||||
test.describe.serial('Compose onboarding workflow verification', { tag: '@smoke' }, () => {
|
||||
test.beforeEach(async () => {
|
||||
if (cliToolsPage.wasRateLimitReached()) {
|
||||
test.info().annotations.push({ type: 'skip', description: 'Rate limit exceeded for current environment' });
|
||||
|
|
|
|||
Loading…
Reference in a new issue