File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ providerConfigs.forEach((config) => {
68
68
await fixLocator . click ( { force : true } ) ;
69
69
} ) ;
70
70
71
- test ( 'Fix all issues with default (Low) effort' , async ( ) => {
71
+ test . skip ( 'Fix all issues with default (Low) effort' , async ( ) => {
72
72
test . setTimeout ( 3600000 ) ;
73
73
await vscodeApp . openAnalysisView ( ) ;
74
74
const analysisView = await vscodeApp . getAnalysisIframe ( ) ;
Original file line number Diff line number Diff line change @@ -38,7 +38,12 @@ export async function cleanupRepo(repoDir: string) {
38
38
}
39
39
40
40
try {
41
- fs . rmSync ( repoPath , { recursive : true , force : true } ) ;
41
+ fs . rmSync ( repoPath , {
42
+ recursive : true ,
43
+ force : true ,
44
+ maxRetries : 5 ,
45
+ retryDelay : 5000 ,
46
+ } ) ;
42
47
console . debug ( `cleanupRepo: Successfully deleted directory ${ repoPath } ` ) ;
43
48
} catch ( error ) {
44
49
console . error ( 'Error while cleaning up cloned repository:' , error ) ;
You can’t perform that action at this time.
0 commit comments