Skip to content

Commit

Permalink
extension/test/integration: skip broken install test for go1.19/1.20
Browse files Browse the repository at this point in the history
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 <[email protected]>
Reviewed-by: Hongxiang Jiang <[email protected]>
kokoro-CI: kokoro <[email protected]>
  • Loading branch information
hyangah committed Jul 16, 2024
1 parent c533715 commit 2b8494a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion extension/test/integration/install.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,12 @@ suite('Installation Tests', function () {
}
}

test('Install one tool with a local proxy', async () => {
test('Install one tool with a local proxy', async function () {
// TODO(golang/vscode-go#3454): reenable the test for old go.
const systemGoVersion = await getGoVersion();
if (systemGoVersion.lt('1.21')) {
this.skip();
}
await runTest(
[
{
Expand Down

0 comments on commit 2b8494a

Please sign in to comment.