We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1167d12 commit 01e4693Copy full SHA for 01e4693
1 file changed
internal/namespaces/iam/v1alpha1/custom_iam_test.go
@@ -1,6 +1,7 @@
1
package iam_test
2
3
import (
4
+ "os"
5
"testing"
6
7
"github.com/scaleway/scaleway-cli/v2/core"
@@ -10,6 +11,10 @@ import (
10
11
)
12
13
func Test_iamAPIKeyGet(t *testing.T) {
14
+ if isNightly := os.Getenv("SLACK_WEBHOOK_NIGHTLY"); isNightly != "" {
15
+ t.Skip()
16
+ }
17
+
18
commands := iam.GetCommands()
19
commands.Merge(account.GetCommands())
20
0 commit comments