diff --git a/Makefile b/Makefile index 246cd8985..e2d5f727c 100755 --- a/Makefile +++ b/Makefile @@ -79,6 +79,11 @@ clean-tests: #------------------------------------------------------ # Run Targets #------------------------------------------------------ +unit-tests: + @echo "Running unit tests..." + $(GO) install github.com/mfridman/tparse@latest + $(GO) test -v -count=1 ./pkg/... -json -cover | tparse --all + tests-e2e: clean-tests docker-build $(GO) test -p 1 -timeout 30m -v -tags e2e ./tests/e2e/connectivity/...