Coverage
This commit is contained in:
parent
809d34e5b2
commit
6a4cfa18da
|
@ -29,3 +29,6 @@ website/vendor
|
||||||
# Test exclusions
|
# Test exclusions
|
||||||
!command/testdata/**/*.tfstate
|
!command/testdata/**/*.tfstate
|
||||||
!command/testdata/**/.terraform/
|
!command/testdata/**/.terraform/
|
||||||
|
|
||||||
|
# Coverage
|
||||||
|
coverage.txt
|
||||||
|
|
2
Makefile
2
Makefile
|
@ -27,7 +27,7 @@ plugin-dev: generate
|
||||||
# we run this one package at a time here because running the entire suite in
|
# we run this one package at a time here because running the entire suite in
|
||||||
# one command creates memory usage issues when running in Travis-CI.
|
# one command creates memory usage issues when running in Travis-CI.
|
||||||
test: fmtcheck generate
|
test: fmtcheck generate
|
||||||
go list -mod=vendor $(TEST) | xargs -t -n4 go test $(TESTARGS) -mod=vendor -timeout=2m -parallel=4
|
go list -mod=vendor $(TEST) | xargs -t -n4 go test $(TESTARGS) -mod=vendor -timeout=2m -parallel=4 -coverprofile=coverage.txt -covermode=atomic
|
||||||
|
|
||||||
# testacc runs acceptance tests
|
# testacc runs acceptance tests
|
||||||
testacc: fmtcheck generate
|
testacc: fmtcheck generate
|
||||||
|
|
Loading…
Reference in New Issue