Skip to content

Commit c5fdb04

Browse files
authored
Skip flaky test in pre-release versions (#16928)
1 parent 227657e commit c5fdb04

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/test/datascience/notebook/interruptRestart.vscode.test.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -356,6 +356,10 @@ suite('Restart/Interrupt/Cancel/Errors @kernelCore', function () {
356356
// When using Raw we don't use jupyter.
357357
return this.skip();
358358
}
359+
// eslint-disable-next-line local-rules/dont-use-process
360+
if (process.env.PACKAGE_PRE_RELEASE === 'prerelease') {
361+
return this.skip();
362+
}
359363

360364
/*
361365
Run cell 1 - Print some value

0 commit comments

Comments
 (0)