We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e42bf7f commit 388015fCopy full SHA for 388015f
.gitignore
@@ -3,3 +3,4 @@ cover.out
3
k8test
4
bin/
5
image.tar
6
+venv/
pkg/internal/integration/main_test.go
@@ -12,7 +12,7 @@ import (
12
"testing"
13
"time"
14
15
- cloudscale "github.com/cloudscale-ch/cloudscale-go-sdk/v6"
+ "github.com/cloudscale-ch/cloudscale-go-sdk/v6"
16
"github.com/stretchr/testify/suite"
17
"golang.org/x/oauth2"
18
v1 "k8s.io/api/core/v1"
@@ -23,11 +23,6 @@ import (
23
"k8s.io/client-go/tools/clientcmd"
24
)
25
26
-func TestMain(m *testing.M) {
27
- exitStatus := m.Run()
28
- os.Exit(exitStatus)
29
-}
30
-
31
func TestIntegration(t *testing.T) {
32
suite.Run(t, new(IntegrationTestSuite))
33
}
0 commit comments