Skip to content

Commit 2b8494a

Browse files
committed
extension/test/integration: skip broken install test for go1.19/1.20
For go 1.19 and 1.20, the extension installs old gopls https://github.com/golang/tools/tree/master/gopls#supported-go-versions For #3454 Change-Id: Ia72d3d9a21789404e80da1579d2fd85dfc633883 Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/598596 Commit-Queue: Hyang-Ah Hana Kim <hyangah@gmail.com> Reviewed-by: Hongxiang Jiang <hxjiang@golang.org> kokoro-CI: kokoro <noreply+kokoro@google.com>
1 parent c533715 commit 2b8494a

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

extension/test/integration/install.test.ts

+6-1
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)