Skip to content

Commit

Permalink
Merge pull request #1713 from thaJeztah/fix_plugin_test
Browse files Browse the repository at this point in the history
Fix: plugin-tests discarding current environment
  • Loading branch information
silvin-lubecki authored Mar 14, 2019
2 parents 7f1176b + 6c4fbb7 commit 651ccc0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion e2e/plugin/trust_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ func ensureBasicPluginBin() (string, error) {
}
installPath := filepath.Join(os.Getenv("GOPATH"), "bin", name)
cmd := exec.Command(goBin, "build", "-o", installPath, "./basic")
cmd.Env = append(cmd.Env, "CGO_ENABLED=0")
cmd.Env = append(os.Environ(), "CGO_ENABLED=0")
if out, err := cmd.CombinedOutput(); err != nil {
return "", errors.Wrapf(err, "error building basic plugin bin: %s", string(out))
}
Expand Down
1 change: 1 addition & 0 deletions scripts/test/e2e/run
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ function runtests {
TEST_SKIP_PLUGIN_TESTS="${SKIP_PLUGIN_TESTS-}" \
GOPATH="$GOPATH" \
PATH="$PWD/build/:/usr/bin:/usr/local/bin:/usr/local/go/bin" \
HOME="$HOME" \
DOCKER_CLI_E2E_PLUGINS_EXTRA_DIRS="$PWD/build/plugins-linux-amd64" \
"$(command -v gotestsum)" -- ./e2e/... ${TESTFLAGS-}
}
Expand Down

0 comments on commit 651ccc0

Please sign in to comment.