mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-08 18:04:14 +01:00
[CI] disable minio test, no minio server yet in CI
(cherry picked from commit0dd74d09d3
) (cherry picked from commit28d2d9b212
)
This commit is contained in:
parent
705d0558be
commit
3c3db1ff0f
1 changed files with 1 additions and 5 deletions
|
@ -4,15 +4,11 @@
|
|||
package storage
|
||||
|
||||
import (
|
||||
"os"
|
||||
"testing"
|
||||
)
|
||||
|
||||
func TestMinioStorageIterator(t *testing.T) {
|
||||
if os.Getenv("CI") == "" {
|
||||
t.Skip("minioStorage not present outside of CI")
|
||||
return
|
||||
}
|
||||
t.Skip("minio not found in Forgejo test yet")
|
||||
testStorageIterator(t, string(MinioStorageType), MinioStorageConfig{
|
||||
Endpoint: "127.0.0.1:9000",
|
||||
AccessKeyID: "123456",
|
||||
|
|
Loading…
Reference in a new issue