Skip to content

Commit 749749e

Browse files
authored
Potential fix for ipywidget flakiness (#14281)
1 parent 43a8716 commit 749749e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/test/datascience/uiTests/ipywidget.ui.functional.test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ const retryIfFail = <T>(fn: () => Promise<T>) => retryIfFailOriginal<T>(fn, wait
3030

3131
use(chaiAsPromised);
3232

33-
[false, true].forEach((useRawKernel) => {
33+
// When using jupyter server, ipywidget tests seem to be a lot flakier. Always use raw kernel
34+
[true].forEach((useRawKernel) => {
3435
//import { asyncDump } from '../common/asyncDump';
3536
suite(`DataScience IPyWidgets (${useRawKernel ? 'With Direct Kernel' : 'With Jupyter Server'})`, () => {
3637
const disposables: Disposable[] = [];

0 commit comments

Comments
 (0)