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

Commit

Permalink
Merge pull request #61 from jrasell/fix-makefile-test-target
Browse files Browse the repository at this point in the history
Fix makefile test target by rename to tests to avoid dir conflict.
  • Loading branch information
jrasell authored Oct 2, 2019
2 parents ac16b93 + 2bc2329 commit f4a6849
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 f4a6849

Please sign in to comment.