mirror of
https://codeberg.org/cunicu/cunicu.git
synced 2025-10-18 14:50:50 +08:00
21 lines
279 B
Go
21 lines
279 B
Go
package k8s_test
|
|
|
|
import (
|
|
"os"
|
|
"testing"
|
|
|
|
"riasc.eu/wice/internal/test"
|
|
)
|
|
|
|
func TestMain(m *testing.M) {
|
|
test.Main(m)
|
|
}
|
|
|
|
func TestBackend(t *testing.T) {
|
|
if os.Getenv("CI") != "" {
|
|
t.Skipf("Kubernetes tests are not yet supported in CI")
|
|
}
|
|
|
|
test.TestBackend(t, "k8s")
|
|
}
|