Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: make e2e tests use terramate binary #145

Merged
merged 15 commits into from
Jan 7, 2022
Merged
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ mod:
## generates coverage report
.PHONY: coverage
coverage:
go test -coverprofile=$(COVERAGE_REPORT) -coverpkg=./... ./...
go test -count=1 -coverprofile=$(COVERAGE_REPORT) -coverpkg=./... ./...

## generates coverage report and shows it on the browser locally
.PHONY: coverage/show
Expand All @@ -51,7 +51,7 @@ coverage/show: coverage
## test code
.PHONY: test
test:
go test -race ./...
go test -count=1 -race ./...

## Build terramate into bin directory
.PHONY: build
Expand Down
Loading