Skip to content

Commit 3a55ae8

Browse files
committed
[release] prepare v0.42.0 release (2)
2b8494a extension/test/integration: skip broken install test for go1.19/1.20 Change-Id: I514d96a4710d108f2670d77174f5e52220317a06
2 parents 3e515c5 + 2b8494a commit 3a55ae8

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

extension/test/integration/install.test.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,12 @@ suite('Installation Tests', function () {
176176
}
177177
}
178178

179-
test('Install one tool with a local proxy', async () => {
179+
test('Install one tool with a local proxy', async function () {
180+
// TODO(golang/vscode-go#3454): reenable the test for old go.
181+
const systemGoVersion = await getGoVersion();
182+
if (systemGoVersion.lt('1.21')) {
183+
this.skip();
184+
}
180185
await runTest(
181186
[
182187
{

0 commit comments

Comments
 (0)