mirror of
https://github.com/Microsoft/vscode
synced 2024-10-30 13:31:48 +00:00
Build ipynb extension before integration test
This commit is contained in:
parent
82331754b3
commit
ffb40deb52
2 changed files with 7 additions and 0 deletions
|
@ -31,6 +31,7 @@ if "%INTEGRATION_TEST_ELECTRON_PATH%"=="" (
|
|||
compile-extension:html-language-features-server^
|
||||
compile-extension:json-language-features-server^
|
||||
compile-extension:git^
|
||||
compile-extension:ipynb^
|
||||
compile-extension-media
|
||||
|
||||
:: Configuration for more verbose output
|
||||
|
@ -77,6 +78,11 @@ mkdir %GITWORKSPACE%
|
|||
call "%INTEGRATION_TEST_ELECTRON_PATH%" %GITWORKSPACE% --extensionDevelopmentPath=%~dp0\..\extensions\git --extensionTestsPath=%~dp0\..\extensions\git\out\test --enable-proposed-api=vscode.git %ALL_PLATFORMS_API_TESTS_EXTRA_ARGS%
|
||||
if %errorlevel% neq 0 exit /b %errorlevel%
|
||||
|
||||
set IPYNBWORKSPACE=%TEMPDIR%\ipynb-%RANDOM%
|
||||
mkdir %IPYNBWORKSPACE%
|
||||
call "%INTEGRATION_TEST_ELECTRON_PATH%" %IPYNBWORKSPACE% --extensionDevelopmentPath=%~dp0\..\extensions\ipynb --extensionTestsPath=%~dp0\..\extensions\ipynb\out\test %ALL_PLATFORMS_API_TESTS_EXTRA_ARGS%
|
||||
if %errorlevel% neq 0 exit /b %errorlevel%
|
||||
|
||||
|
||||
:: Tests standalone (CommonJS)
|
||||
|
||||
|
|
|
@ -39,6 +39,7 @@ else
|
|||
compile-extension:html-language-features-server \
|
||||
compile-extension:json-language-features-server \
|
||||
compile-extension:git \
|
||||
compile-extension:ipynb \
|
||||
compile-extension-media
|
||||
|
||||
# Configuration for more verbose output
|
||||
|
|
Loading…
Reference in a new issue