Use gotest.tools/gotestsum binary to run unit and e2e tests and simplify the output.

Signed-off-by: Silvin Lubecki <silvin.lubecki@docker.com>
This commit is contained in:
Silvin Lubecki
2019-01-24 17:53:42 +01:00
parent 2344627564
commit 3bd3996f72
4 changed files with 14 additions and 3 deletions

View File

@ -68,9 +68,9 @@ function runtests {
TEST_REMOTE_DAEMON="${REMOTE_DAEMON-}" \
TEST_SKIP_PLUGIN_TESTS="${SKIP_PLUGIN_TESTS-}" \
GOPATH="$GOPATH" \
PATH="$PWD/build/:/usr/bin" \
PATH="$PWD/build/:/usr/bin:/usr/local/bin:/usr/local/go/bin" \
DOCKER_CLI_E2E_PLUGINS_EXTRA_DIRS="$PWD/build/plugins-linux-amd64" \
"$(which go)" test -v ./e2e/... ${TESTFLAGS-}
"$(which gotestsum)" -- ./e2e/... ${TESTFLAGS-}
}
export unique_id="${E2E_UNIQUE_ID:-cliendtoendsuite}"

View File

@ -1,4 +1,4 @@
#!/usr/bin/env bash
set -eu -o pipefail
go test -v "$@"
gotestsum -- "$@"