From: James Page <james.page@ubuntu.com>
Date: Tue, 17 Nov 2020 02:14:58 +0800
Subject: Skip online tests

Forwarded: no

Some tests rely on access to online resources; skip
these as this does not work in offline build environments.
---
 go/vcs/vcs_test.go | 1 +
 1 file changed, 1 insertion(+)

diff --git a/go/vcs/vcs_test.go b/go/vcs/vcs_test.go
index b725f01..52a5dca 100644
--- a/go/vcs/vcs_test.go
+++ b/go/vcs/vcs_test.go
@@ -46,6 +46,7 @@ func TestRepoRootForImportPath(t *testing.T) {
 
 	for _, test := range tests {
 		got, err := RepoRootForImportPath(test.path, false)
+		t.Skip("Skipping test in offline build environment")
 		if err != nil {
 			t.Errorf("RepoRootForImportPath(%q): %v", test.path, err)
 			continue
