Skip to content
This repository has been archived by the owner on Sep 9, 2020. It is now read-only.

Commit

Permalink
Fix makefile test target by rename to tests to avoid dir conflict.
Browse files Browse the repository at this point in the history
  • Loading branch information
jrasell committed Oct 2, 2019
1 parent ac16b93 commit 2bc2329
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions GNUmakefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
default: lint test build
default: lint tests build

tools: ## Install the tools used to test and build
@echo "==> Installing build tools"
Expand All @@ -9,7 +9,7 @@ build: ## Build Sherpa for development purposes
@echo "==> Running $@..."
govvv build -o sherpa ./cmd -version $(shell git describe --tags --abbrev=0 $(git rev-list --tags --max-count=1) |cut -c 2- |awk '{print $1}')+dev -pkg github.com/jrasell/sherpa/pkg/build

test: ## Run the Sherpa test suite with coverage
tests: ## Run the Sherpa test suite with coverage
@echo "==> Running $@..."
@go test ./... -cover -v -tags -race \
"$(BUILDTAGS)" $(shell go list ./... | grep -v vendor)
Expand Down

0 comments on commit 2bc2329

Please sign in to comment.