From a3eb095d6aeed806877423d9ef571b9a50ca8a2a Mon Sep 17 00:00:00 2001 From: Rob Findley Date: Tue, 25 May 2021 16:44:43 -0400 Subject: [PATCH] gopls/internal/regtest: skip TestDeleteModule_Interdependent This test is flaky due to orphaned file reloading. Since it is for an experimental feature, skip it until we understand the problem. For golang/go#46375 Updates golang/go#46183 Change-Id: Id6b369f2b61730c8503e3532547708f7689343c3 Reviewed-on: https://go-review.googlesource.com/c/tools/+/322649 Trust: Robert Findley Run-TryBot: Robert Findley gopls-CI: kokoro TryBot-Result: Go Bot Reviewed-by: Rebecca Stambler --- gopls/internal/regtest/workspace/workspace_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gopls/internal/regtest/workspace/workspace_test.go b/gopls/internal/regtest/workspace/workspace_test.go index 956e59a2e31..e3f8709ac53 100644 --- a/gopls/internal/regtest/workspace/workspace_test.go +++ b/gopls/internal/regtest/workspace/workspace_test.go @@ -305,6 +305,8 @@ func main() { // This change tests that the version of the module used changes after it has // been deleted from the workspace. func TestDeleteModule_Interdependent(t *testing.T) { + t.Skip("Skipping due to golang/go#46375: race due to orphaned file reloading") + const multiModule = ` -- moda/a/go.mod -- module a.com