Skip to content

Commit c23bf21

Browse files
authored
fix(ci): update minimum vscode version required by extensions #3389
Problem: integ tests timing out for python3.10 and go1.x for "minimum" job. Solution: bump the required minimum expected by the related vscode extensions.
1 parent f971db1 commit c23bf21

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

src/integrationTest/sam.test.ts

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,8 @@ const scenarios: TestScenario[] = [
116116
debugSessionType: 'python',
117117
language: 'python',
118118
dependencyManager: 'pip',
119-
vscodeMinimum: '1.65.0',
119+
// https://github.com/microsoft/vscode-python/blob/main/package.json
120+
vscodeMinimum: '1.78.0',
120121
},
121122
{
122123
runtime: 'java8',
@@ -153,7 +154,7 @@ const scenarios: TestScenario[] = [
153154
language: 'go',
154155
dependencyManager: 'mod',
155156
// https://github.com/golang/vscode-go/blob/master/package.json
156-
vscodeMinimum: '1.59.0',
157+
vscodeMinimum: '1.67.0',
157158
},
158159
// { runtime: 'dotnetcore3.1', path: 'src/HelloWorld/Function.cs', debugSessionType: 'coreclr', language: 'csharp' },
159160

@@ -226,7 +227,8 @@ const scenarios: TestScenario[] = [
226227
debugSessionType: 'python',
227228
language: 'python',
228229
dependencyManager: 'pip',
229-
vscodeMinimum: '1.65.0',
230+
// https://github.com/microsoft/vscode-python/blob/main/package.json
231+
vscodeMinimum: '1.78.0',
230232
},
231233
{
232234
runtime: 'go1.x',
@@ -237,7 +239,7 @@ const scenarios: TestScenario[] = [
237239
language: 'go',
238240
dependencyManager: 'mod',
239241
// https://github.com/golang/vscode-go/blob/master/package.json
240-
vscodeMinimum: '1.59.0',
242+
vscodeMinimum: '1.67.0',
241243
},
242244
{
243245
runtime: 'java8',

0 commit comments

Comments
 (0)