Files
athens/scripts/test_unit.sh
Tomasz Tomalak f5259a388d Add jaeger tracer to helm charts (#768)
* Add jaeger tracer to helm charts

* Add new lines to files
2018-10-15 20:34:36 -04:00

14 lines
270 B
Bash
Executable File

#!/bin/bash
# test_unit.sh
if [ -z ${GO_ENV} ]; then
export GO_ENV="test"
fi
export GO111MODULE=on
# Run the unit tests with the race detector and code coverage enabled
set -xeuo pipefail
go test -mod=vendor -race -coverprofile cover.out -covermode atomic ./...