Skip to content

Commit 6672f75

Browse files
committed
tmp: disable retry
1 parent c79c140 commit 6672f75

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

integrations/upgrade/upgrade-errors.test.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,9 @@ test(
3131
@tailwind utilities;
3232
`,
3333
},
34+
retry: 0,
3435
},
36+
3537
async ({ exec, expect }) => {
3638
// Ensure we are in a git repo
3739
await exec('git init')

integrations/utils.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ interface TestConfig {
3737
[filePath: string]: string | Uint8Array
3838
}
3939

40+
retry?: number
4041
timeout?: number
4142
installDependencies?: boolean
4243
}
@@ -88,7 +89,7 @@ export function test(
8889
name,
8990
{
9091
timeout: config.timeout ?? TEST_TIMEOUT,
91-
retry: process.env.CI ? 2 : 0,
92+
retry: config.retry ?? (process.env.CI ? 2 : 0),
9293
only: only || (!process.env.CI && debug),
9394
skip,
9495
concurrent: false,

0 commit comments

Comments
 (0)