Skip to content

Commit

Permalink
make test returned
Browse files Browse the repository at this point in the history
  • Loading branch information
ayuryshev committed Mar 21, 2019
1 parent f7fac50 commit 9721ccd
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,11 @@ lint: ## Run linters. Use make install-linters first
# The govet version in golangci-lint is out of date and has spurious warnings, run it separately
${OPTS} go vet -all ./...

test: ## Run tests for net
${OPTS} go test -race -tags no_ci -cover -timeout=5m ./internal/...
${OPTS} go test -race -tags no_ci -cover -timeout=5m ./pkg/...


install-linters: ## Install linters
GO111MODULE=off go get -u github.com/FiloSottile/vendorcheck
# For some reason this install method is not recommended, see https://github.com/golangci/golangci-lint#install
Expand All @@ -53,8 +58,6 @@ dep: ## Sorts dependencies
${OPTS} go mod vendor -v




# Apps
host-apps: ## Build apps binaries
${OPTS} go build -o ./apps/chat.v1.0 ./cmd/apps/chat
Expand Down

0 comments on commit 9721ccd

Please sign in to comment.