diff --git a/Makefile b/Makefile index 1377b03dad344ad70bfbc4c41cca100719b44ede..a2e72b5900ab5478609ef9844a9d9cb7fe5fd7c5 100644 --- a/Makefile +++ b/Makefile @@ -140,4 +140,11 @@ build_docker_db: check .PHONY: test_docker_db test_docker_db: check docker build -t ${DOCKER_NAMESPACE}/db:build-${COMMIT_SHA} ${REPO} - docker run ${DOCKER_NAMESPACE}/db:build-${COMMIT_SHA} glide nv | xargs go test \ No newline at end of file + docker run ${DOCKER_NAMESPACE}/db:build-${COMMIT_SHA} glide nv | xargs go test -tags integration + +### Clean up + +# clean removes the target folder containing build artefacts +.PHONY: clean +clean: + -rm -r ./target \ No newline at end of file