Add test-coverage & codecov target and update circleci

Signed-off-by: Vincent Demeester <vincent@sbr.pm>
Upstream-commit: d79d903864
Component: cli
This commit is contained in:
Vincent Demeester
2017-05-19 17:22:37 -04:00
committed by Daniel Nephin
parent 5bbf4871d4
commit 56d05cc358
4 changed files with 17 additions and 2 deletions
+2
View File
@@ -2,3 +2,5 @@
/build/
cli/winresources/rsrc_386.syso
cli/winresources/rsrc_amd64.syso
coverage.txt
profile.out
+13
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 ./...
+1 -1
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: |
+1 -1
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 && \