Skip to content

Commit

Permalink
Skip TestMinioStorageIterator on CI (#24762)
Browse files Browse the repository at this point in the history
Fix #24691 (comment)

---------

Co-authored-by: silverwind <me@silverwind.io>
  • Loading branch information
lunny and silverwind authored May 17, 2023
1 parent b807d2f commit 6c8235d
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions modules/storage/minio_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,15 @@
package storage

import (
"os"
"testing"
)

func TestMinioStorageIterator(t *testing.T) {
if os.Getenv("CI") == "" {
t.Skip("minioStorage not present on CI")
return
}
testStorageIterator(t, string(MinioStorageType), MinioStorageConfig{
Endpoint: "127.0.0.1:9000",
AccessKeyID: "123456",
Expand Down

0 comments on commit 6c8235d

Please sign in to comment.