We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 17c54b3 + 81cb666 commit d00e50eCopy full SHA for d00e50e
Dockerfile-test
@@ -6,4 +6,4 @@ COPY . /go/src/github.com/danihodovic/contentful-terraform
6
7
RUN go get
8
9
-CMD go test
+CMD go test -v
Makefile
@@ -4,8 +4,13 @@ build:
4
5
.PHONY: test
test: build
- docker run contentful-terraform-test go test
+ docker run \
+ contentful-terraform-test \
+ go test -v
10
11
.PHONY: interactive
12
interactive:
- docker run -it -v $(shell pwd):/go/src/github.com/danihodovic/contentful-terraform contentful-terraform-test bash
13
+ docker run -it \
14
+ -v $(shell pwd):/go/src/github.com/danihodovic/contentful-terraform \
15
16
+ bash
0 commit comments