Add code coverage to the tests

Docker-DCO-1.1-Signed-off-by: Michael Crosby <michael@docker.com> (github: crosbymichael)
This commit is contained in:
Michael Crosby 2014-07-23 10:58:45 -07:00
parent 4404b1521c
commit 39ce7cca29
1 changed files with 2 additions and 1 deletions

View File

@ -1,9 +1,10 @@
FROM crosbymichael/golang
RUN apt-get update && apt-get install -y gcc
RUN go get code.google.com/p/go.tools/cmd/cover
ADD . /go/src/github.com/docker/libcontainer
WORKDIR /go/src/github.com/docker/libcontainer
RUN go get -d ./... && go install ./...
CMD ["go", "test", "./..."]
CMD ["go", "test", "-v", "-cover", "./..."]