Skip to content

Commit 30bb749

Browse files
authored
ci: skip flaky test on supabase (#12667)
This disables running the "`can reliably run workflows with parallel tasks`" int test on supabase. For unknown reasons, it fails most of the time.
1 parent 2bd098c commit 30bb749

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

test/queues/int.spec.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1367,6 +1367,12 @@ describe('Queues', () => {
13671367
})
13681368

13691369
it('can reliably run workflows with parallel tasks', async () => {
1370+
// eslint-disable-next-line jest/no-conditional-in-test
1371+
if (process.env.PAYLOAD_DATABASE === 'supabase') {
1372+
// TODO: This test is flaky on supabase in CI, so we skip it for now
1373+
return
1374+
}
1375+
13701376
const amount = 500
13711377
payload.config.jobs.deleteJobOnComplete = false
13721378

0 commit comments

Comments
 (0)