* feat: kubesphere 4.0 Signed-off-by: ci-bot <ci-bot@kubesphere.io> * feat: kubesphere 4.0 Signed-off-by: ci-bot <ci-bot@kubesphere.io> --------- Signed-off-by: ci-bot <ci-bot@kubesphere.io> Co-authored-by: ks-ci-bot <ks-ci-bot@example.com> Co-authored-by: joyceliu <joyceliu@yunify.com>
18 lines
310 B
Makefile
18 lines
310 B
Makefile
# General
|
|
WORKDIR = $(PWD)
|
|
|
|
# Go parameters
|
|
GOCMD = go
|
|
GOTEST = $(GOCMD) test
|
|
|
|
# Coverage
|
|
COVERAGE_REPORT = coverage.out
|
|
COVERAGE_MODE = count
|
|
|
|
test:
|
|
$(GOTEST) ./...
|
|
|
|
test-coverage:
|
|
echo "" > $(COVERAGE_REPORT); \
|
|
$(GOTEST) -coverprofile=$(COVERAGE_REPORT) -coverpkg=./... -covermode=$(COVERAGE_MODE) ./...
|