Skip to content

Commit 20e4d25

Browse files
committed
Add missing //go:build integration tag to verify_integration_test.go
The four tests in this file (TestVerifyIntegration, TestVerifyIntegrationCustomIssuer, TestVerifyIntegrationReusableWorkflow, TestVerifyIntegrationReusableWorkflowSignerWorkflow) call NewLiveSigstoreVerifier which requires network access to Sigstore and GitHub TUF servers. Unlike the other integration test files in this package (attestation_integration_test.go, sigstore_integration_test.go, inspect_integration_test.go), this file was missing the //go:build integration tag, causing these tests to run during a regular 'go test ./...' and fail in network-isolated build environments.
1 parent bd4a06a commit 20e4d25

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

pkg/cmd/attestation/verify/verify_integration_test.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
//go:build integration
2+
13
package verify
24

35
import (

0 commit comments

Comments
 (0)