adding debug for tests

feature/296_issue
Karolis Rusenas 2018-12-01 22:18:15 +00:00
parent a1cc37692d
commit ef14bbd087
1 changed files with 3 additions and 0 deletions

View File

@ -84,6 +84,9 @@ func (kc *KeelCmd) Start(ctx context.Context) error {
cmd := "keel"
args := []string{"--no-incluster", "--kubeconfig", getKubeConfig()}
c := exec.CommandContext(ctx, cmd, args...)
c.Env = []string{
"DEBUG=true",
}
c.Stdout = os.Stdout
c.Stderr = os.Stderr