-
Notifications
You must be signed in to change notification settings - Fork 765
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: increase timeout and skip gopls update check in testing
installation tests require multiple fs operations, and 2s may be too short to complete everything on time. Allow more time. And disable the gopls update check in gopls testing. That shortens the time to bring up the gopls server. Also remove the hack to start the test with a clean user profile (--user-data-dir). That doesn't seem to work but interferes with picking up the workspace settings, which I do not understand why. Updates #169 Updates #43 Updates microsoft/vscode#97995 Change-Id: I0e8b7d8f1f47f2e68696c6bd078c1ad2a0fe6780 GitHub-Last-Rev: f414011 GitHub-Pull-Request: #231 Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/238001 Reviewed-by: Rebecca Stambler <rstambler@golang.org>
- Loading branch information
Showing
3 changed files
with
6 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
{ | ||
"go.useLanguageServer": true, | ||
"go.languageServerFlags": ["-rpc.trace", "serve"] | ||
"go.languageServerFlags": ["-rpc.trace", "serve"], | ||
"go.useGoProxyToCheckForToolUpdates": false, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters