Skip to content

Commit 47ecbb0

Browse files
committed
add comments on how to test gcs and s3
1 parent cc303a6 commit 47ecbb0

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

get_gcs_test.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ import (
88
"testing"
99
)
1010

11+
//Note for external contributors: In order to run the GCS test suite, you will only be able to be run
12+
// in GitHub Actions when you open a PR.
13+
1114
func TestGCSGetter_impl(t *testing.T) {
1215
var _ Getter = new(GCSGetter)
1316
}

get_s3_test.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ import (
99
"github.com/aws/aws-sdk-go/aws/awserr"
1010
)
1111

12+
//Note for external contributors: In order to run the GCS test suite, you will only be able to be run
13+
// in GitHub Actions when you open a PR.
14+
1215
func TestS3Getter_impl(t *testing.T) {
1316
var _ Getter = new(S3Getter)
1417
}

0 commit comments

Comments
 (0)