mirror of
https://git.uploadfilter24.eu/lerentis/terraform-provider-gitea.git
synced 2024-11-05 02:18:12 +00:00
10 lines
218 B
Bash
10 lines
218 B
Bash
set -ev
|
|
|
|
if [[ "$1" == "goveralls" ]]; then
|
|
echo "Testing with goveralls..."
|
|
go get github.com/mattn/goveralls
|
|
$HOME/gopath/bin/goveralls -service=travis-ci
|
|
else
|
|
echo "Testing with go test..."
|
|
go test -v ./...
|
|
fi
|