Skip to content

Commit

Permalink
[release] prepare v0.42.0 release (2)
Browse files Browse the repository at this point in the history
2b8494a extension/test/integration: skip broken install test for go1.19/1.20

Change-Id: I514d96a4710d108f2670d77174f5e52220317a06
  • Loading branch information
hyangah committed Jul 16, 2024
2 parents 3e515c5 + 2b8494a commit 3a55ae8
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 3a55ae8

Please sign in to comment.