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:
Vladimir Lazar 2025-10-27 08:49:45 +01:00 committed by GitHub
parent 03a07b8cb2
commit 5a31c08efd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 1 deletions

View file

@ -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);
});

View file

@ -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' });