Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / tools / buf / skip_test_requiring_network.patch
blob1b0cdfb12c03d508b93af873a4f6896e505f8e35
1 diff --git a/private/bufpkg/buftesting/buftesting.go b/private/bufpkg/buftesting/buftesting.go
2 index 82b3ec4..ef8263a 100644
3 --- a/private/bufpkg/buftesting/buftesting.go
4 +++ b/private/bufpkg/buftesting/buftesting.go
5 @@ -99,6 +99,10 @@ func RunActualProtoc(
7 // GetGoogleapisDirPath gets the path to a clone of googleapis.
8 func GetGoogleapisDirPath(t *testing.T, buftestingDirPath string) string {
9 + // Requires network access, which is not available during
10 + // the nixpkgs sandboxed build
11 + t.Skip()
13 googleapisDirPath := filepath.Join(buftestingDirPath, testGoogleapisDirPath)
14 require.NoError(