summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index fbb7183..fb84df7 100644
--- a/Makefile
+++ b/Makefile
@@ -15,10 +15,15 @@ setup:
build: sparkled
-test:
+test-unit:
@go clean -testcache
@go test -shuffle=on ./...
+test-integration: build-image
+ @go test -tags=integration ./test/integration/...
+
+test: test-unit test-integration
+
build-image:
@docker build --tag $(IMAGE_TAG) .