@@ -222,6 +222,10 @@ suite('VSCode Notebook Kernel Error Handling - @kernelCore', function () {
222222 ) ;
223223 }
224224 test ( 'Ensure we get an error displayed in cell output and prompt when user has a file named random.py next to the ipynb file' , async function ( ) {
225+ // eslint-disable-next-line local-rules/dont-use-process
226+ if ( process . env . PACKAGE_PRE_RELEASE === 'prerelease' ) {
227+ return this . skip ( ) ;
228+ }
225229 await runAndFailWithKernelCrash ( ) ;
226230 const cell3 = await notebook . appendCodeCell ( 'print("123412341234")' ) ;
227231 const kernel = kernelProvider . get ( notebook ) ! ;
@@ -247,6 +251,10 @@ suite('VSCode Notebook Kernel Error Handling - @kernelCore', function () {
247251 assert . strictEqual ( cell3 . executionSummary ?. executionOrder , 1 ) ;
248252 } ) ;
249253 test ( 'Ensure cell output does not have errors when execution fails due to dead kernel' , async function ( ) {
254+ // eslint-disable-next-line local-rules/dont-use-process
255+ if ( process . env . PACKAGE_PRE_RELEASE === 'prerelease' ) {
256+ return this . skip ( ) ;
257+ }
250258 await runAndFailWithKernelCrash ( ) ;
251259 const cell3 = await notebook . appendCodeCell ( 'print("123412341234")' ) ;
252260 const kernel = kernelProvider . get ( notebook ) ! ;
@@ -267,6 +275,10 @@ suite('VSCode Notebook Kernel Error Handling - @kernelCore', function () {
267275 assert . isUndefined ( cell3 . executionSummary ?. executionOrder , 'Should not have an execution order' ) ;
268276 } ) ;
269277 test ( 'Ensure we get only one prompt to restart kernel when running all cells against a dead kernel' , async function ( ) {
278+ // eslint-disable-next-line local-rules/dont-use-process
279+ if ( process . env . PACKAGE_PRE_RELEASE === 'prerelease' ) {
280+ return this . skip ( ) ;
281+ }
270282 await runAndFailWithKernelCrash ( ) ;
271283 await notebook . appendCodeCell ( 'print("123412341234")' ) ;
272284 const kernel = kernelProvider . get ( notebook ) ! ;
0 commit comments