From 93b914bec0b2d1084e2d7c21dfc7a5052bbdf674 Mon Sep 17 00:00:00 2001 From: aamunger Date: Mon, 5 Jun 2023 10:43:54 -0700 Subject: [PATCH] run notebook renderer tests --- scripts/test-integration.bat | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/scripts/test-integration.bat b/scripts/test-integration.bat index e5b356f3dec..55d7202968f 100644 --- a/scripts/test-integration.bat +++ b/scripts/test-integration.bat @@ -82,6 +82,13 @@ mkdir %IPYNBWORKSPACE% call "%INTEGRATION_TEST_ELECTRON_PATH%" %IPYNBWORKSPACE% --extensionDevelopmentPath=%~dp0\..\extensions\ipynb --extensionTestsPath=%~dp0\..\extensions\ipynb\out\test %API_TESTS_EXTRA_ARGS% if %errorlevel% neq 0 exit /b %errorlevel% +echo. +echo ### Notebook Output tests +set NBOUTWORKSPACE=%TEMPDIR%\nbout-%RANDOM% +mkdir %NBOUTWORKSPACE% +call "%INTEGRATION_TEST_ELECTRON_PATH%" %NBOUTWORKSPACE% --extensionDevelopmentPath=%~dp0\..\extensions\notebook-renderers --extensionTestsPath=%~dp0\..\extensions\notebook-renderers\out\test %API_TESTS_EXTRA_ARGS% +if %errorlevel% neq 0 exit /b %errorlevel% + echo. echo ### Configuration editing tests set CFWORKSPACE=%TEMPDIR%\cf-%RANDOM%