Skip to content
This repository was archived by the owner on Jun 27, 2025. It is now read-only.

Commit 9387441

Browse files
authored
Merge pull request #299 from jrasell/add-acctest-make-target
Add makefile target for acctests and remove from general tests.
2 parents 957a572 + 874e653 commit 9387441

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

GNUmakefile

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,12 @@ build: ## Build Levant for development purposes
1616
test: ## Run the Levant test suite with coverage
1717
@echo "==> Running $@..."
1818
@go test -cover -v -tags -race \
19-
"$(BUILDTAGS)" $(shell go list ./... | grep -v vendor)
19+
"$(BUILDTAGS)" $(shell go list ./... |grep -v vendor |grep -v test)
20+
21+
.PHONY: acceptance-test
22+
acceptance-test: ## Run the Levant acceptance tests
23+
@echo "==> Running $@..."
24+
go test -timeout 120s github.com/jrasell/levant/test -v
2025

2126
.PHONY: release
2227
release: ## Trigger the release build script

0 commit comments

Comments
 (0)