From bf4a4a6b057670a02bdab92f05d8bf55c7dfd677 Mon Sep 17 00:00:00 2001 From: Benjamin Pasero Date: Wed, 4 Aug 2021 18:09:55 +0200 Subject: [PATCH] smoke tests - retry data migration tests on windows (#129279) --- test/smoke/src/areas/workbench/data-migration.test.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/test/smoke/src/areas/workbench/data-migration.test.ts b/test/smoke/src/areas/workbench/data-migration.test.ts index 390cf30907d..7686ef8272c 100644 --- a/test/smoke/src/areas/workbench/data-migration.test.ts +++ b/test/smoke/src/areas/workbench/data-migration.test.ts @@ -64,6 +64,12 @@ export function setup(opts: ParsedArgs, testDataPath: string) { this.skip(); } + // Windows: this test is flaky for yet unknown reasons + // https://github.com/microsoft/vscode/issues/129279 + if (process.platform === 'win32') { + this.retries(2); + } + const userDataDir = join(testDataPath, 'd3'); // different data dir from the other tests const stableOptions: ApplicationOptions = Object.assign({}, this.defaultOptions);