aboutsummaryrefslogtreecommitdiffstats
path: root/test/security/k8s/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'test/security/k8s/Makefile')
-rw-r--r--test/security/k8s/Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/test/security/k8s/Makefile b/test/security/k8s/Makefile
index aeb1d9077..05fbba047 100644
--- a/test/security/k8s/Makefile
+++ b/test/security/k8s/Makefile
@@ -13,8 +13,12 @@ $(BIN): export GOPATH = $(shell pwd)
$(BIN):
go install $(PROJECT)/cmd/$(BIN)
+test: export GOPATH = $(shell pwd)
+test:
+ go test $(PROJECT)/...
+
clean:
rm $(BIN_DIR)/$(BIN)
rmdir $(BIN_DIR)
-.PHONY: all run build clean $(BIN)
+.PHONY: all run build test clean $(BIN)