Skip to content

Commit 68b7875

Browse files
committed
aux
Signed-off-by: Alejandro Brugarolas <[email protected]>
1 parent 642226d commit 68b7875

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

e2e/tests/analyze_coolstore.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ providerConfigs.forEach((config) => {
6868
await fixLocator.click({ force: true });
6969
});
7070

71-
test('Fix all issues with default (Low) effort', async () => {
71+
test.skip('Fix all issues with default (Low) effort', async () => {
7272
test.setTimeout(3600000);
7373
await vscodeApp.openAnalysisView();
7474
const analysisView = await vscodeApp.getAnalysisIframe();

e2e/utilities/utils.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,12 @@ export async function cleanupRepo(repoDir: string) {
3838
}
3939

4040
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+
});
4247
console.debug(`cleanupRepo: Successfully deleted directory ${repoPath}`);
4348
} catch (error) {
4449
console.error('Error while cleaning up cloned repository:', error);

0 commit comments

Comments
 (0)