mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 07:09:21 +01:00
[CI] disable minio test, no minio server yet in CI
(cherry picked from commit0dd74d09d3
) (cherry picked from commit28d2d9b212
) (cherry picked from commit3c3db1ff0f
) (cherry picked from commit79bbbe2dd2
) (cherry picked from commita4050eb6b1
) (cherry picked from commitd8fac17bbe
)
This commit is contained in:
parent
dbd1663998
commit
adf8c1dc8e
1 changed files with 1 additions and 5 deletions
|
@ -4,17 +4,13 @@
|
||||||
package storage
|
package storage
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"os"
|
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"code.gitea.io/gitea/modules/setting"
|
"code.gitea.io/gitea/modules/setting"
|
||||||
)
|
)
|
||||||
|
|
||||||
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, setting.MinioStorageType, &setting.Storage{
|
testStorageIterator(t, setting.MinioStorageType, &setting.Storage{
|
||||||
MinioConfig: setting.MinioStorageConfig{
|
MinioConfig: setting.MinioStorageConfig{
|
||||||
Endpoint: "127.0.0.1:9000",
|
Endpoint: "127.0.0.1:9000",
|
||||||
|
|
Loading…
Reference in a new issue