Skip to content

Commit 6c8235d

Browse files
lunnysilverwind
andauthored
Skip TestMinioStorageIterator on CI (#24762)
Fix #24691 (comment) --------- Co-authored-by: silverwind <[email protected]>
1 parent b807d2f commit 6c8235d

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

modules/storage/minio_test.go

+5
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,15 @@
44
package storage
55

66
import (
7+
"os"
78
"testing"
89
)
910

1011
func TestMinioStorageIterator(t *testing.T) {
12+
if os.Getenv("CI") == "" {
13+
t.Skip("minioStorage not present on CI")
14+
return
15+
}
1116
testStorageIterator(t, string(MinioStorageType), MinioStorageConfig{
1217
Endpoint: "127.0.0.1:9000",
1318
AccessKeyID: "123456",

0 commit comments

Comments
 (0)