Add test-coverage & codecov target and update circleci

Signed-off-by: Vincent Demeester <vincent@sbr.pm>
This commit is contained in:
Vincent Demeester 2017-05-18 10:48:24 +02:00 committed by Daniel Nephin
parent 883d28cfce
commit d79d903864
4 changed files with 17 additions and 2 deletions

2
.gitignore vendored
View File

@ -2,3 +2,5 @@
/build/
cli/winresources/rsrc_386.syso
cli/winresources/rsrc_amd64.syso
coverage.txt
profile.out

View File

@ -14,6 +14,19 @@ clean:
test:
go test -tags daemon -v $(shell go list ./... | grep -v /vendor/)
.PHONY: test-coverage
test-coverage:
for pkg in $(shell go list ./... | grep -v /vendor/); do \
go test -tags daemon -v -cover -parallel 8 -coverprofile=profile.out -covermode=atomic $${pkg} || exit 1; \
if test -f profile.out; then \
cat profile.out >> coverage.txt && rm profile.out; \
fi; \
done
.PHONY: codecov
codecov:
$(shell curl -s https://codecov.io/bash | bash)
.PHONY: lint
lint:
gometalinter --config gometalinter.json ./...

View File

@ -35,7 +35,7 @@ jobs:
dockerfile=dockerfiles/Dockerfile.dev
echo "COPY . ." >> $dockerfile
docker build -f $dockerfile --tag cli-builder .
docker run cli-builder make test
docker run cli-builder make test-coverage codecov
- run:
name: "Validate Vendor and Code Generation"
command: |

View File

@ -1,7 +1,7 @@
FROM golang:1.8-alpine
RUN apk add -U git make bash coreutils
RUN apk add -U git make bash coreutils curl
RUN go get github.com/LK4D4/vndr && \
cp /go/bin/vndr /usr/bin && \