Skip to content
Snippets Groups Projects
Select Git revision
  • c94728feda23aaafce8260ffe159d85573a83c2e
  • master default protected
2 results

LICENSE

Blame
  • Makefile 310 B
    # 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) ./...