kompose/script/test-unit
Charlie Drage 8787006533 Modify command in initializing unit tests
This cleans up the current script we have to a simple one-liner to test
unit tests.
2016-10-31 16:32:22 -04:00

7 lines
185 B
Bash
Executable File

#!/bin/bash
set -e
source "$(dirname "$BASH_SOURCE")/.build"
go test "${BUILD_FLAGS[@]}" -race -cover -v $( go list github.com/kubernetes-incubator/kompose/... | grep -v '/vendor/' )