Skip to content

Commit

Permalink
Set TELEPORT_ETCD_TEST=yes. (#12784)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tener committed May 24, 2022
1 parent 41de64f commit 4dc3df5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .cloudbuild/scripts/cmd/unit-tests/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -175,8 +175,9 @@ func run() error {
func runUnitTests(workspace string) error {
cmd := exec.Command("make", "test")
cmd.Dir = workspace
cmd.Env = append(os.Environ(), "TELEPORT_ETCD_TEST=yes")
cmd.Env = append(os.Environ(), "TELEPORT_XAUTH_TEST=yes")
cmd.Env = os.Environ()
cmd.Env = append(cmd.Env, "TELEPORT_ETCD_TEST=yes")
cmd.Env = append(cmd.Env, "TELEPORT_XAUTH_TEST=yes")
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr

Expand Down

0 comments on commit 4dc3df5

Please sign in to comment.