File tree 2 files changed +2
-3
lines changed 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -11,3 +11,4 @@ variables:
11
11
npm_config_cache : $(Pipeline.Workspace)/.npm
12
12
vmImageMacOS : ' macOS-10.15'
13
13
TS_NODE_FILES : true # Temporarily enabled to allow using types from vscode.proposed.d.ts from ts-node (for tests).
14
+ VSC_PYTHON_CI_TEST_VSC_CHANNEL : ' 1.48.0' # Enforce this until https://github.com/microsoft/vscode-test/issues/73 is fixed
Original file line number Diff line number Diff line change @@ -16,9 +16,7 @@ const extensionDevelopmentPath = process.env.CODE_EXTENSIONS_PATH
16
16
? process . env . CODE_EXTENSIONS_PATH
17
17
: EXTENSION_ROOT_DIR_FOR_TESTS ;
18
18
19
- const channel = ( process . env . VSC_PYTHON_CI_TEST_VSC_CHANNEL || '' ) . toLowerCase ( ) . includes ( 'insiders' )
20
- ? 'insiders'
21
- : 'stable' ;
19
+ const channel = process . env . VSC_PYTHON_CI_TEST_VSC_CHANNEL || 'stable' ;
22
20
23
21
function start ( ) {
24
22
console . log ( '*' . repeat ( 100 ) ) ;
You can’t perform that action at this time.
0 commit comments