[CI] disable minio test, no minio server yet in CI
(cherry picked from commit 0dd74d09d3
)
This commit is contained in:
parent
91245ca917
commit
28d2d9b212
1 changed files with 1 additions and 5 deletions
|
@ -4,15 +4,11 @@
|
||||||
package storage
|
package storage
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"os"
|
|
||||||
"testing"
|
"testing"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestMinioStorageIterator(t *testing.T) {
|
func TestMinioStorageIterator(t *testing.T) {
|
||||||
if os.Getenv("CI") == "" {
|
t.Skip("minio not found in Forgejo test yet")
|
||||||
t.Skip("minioStorage not present outside of CI")
|
|
||||||
return
|
|
||||||
}
|
|
||||||
testStorageIterator(t, string(MinioStorageType), MinioStorageConfig{
|
testStorageIterator(t, string(MinioStorageType), MinioStorageConfig{
|
||||||
Endpoint: "127.0.0.1:9000",
|
Endpoint: "127.0.0.1:9000",
|
||||||
AccessKeyID: "123456",
|
AccessKeyID: "123456",
|
||||||
|
|
Loading…
Reference in a new issue