diff --git a/Makefile b/Makefile index 7e574bf..d8c4f37 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ .PHONY: build build_examples install_examples lint lint-copyright lint-golang -GO_TEST_FLAGS=-race -coverprofile="coverage.txt" +GO_TEST_FLAGS=-race -coverprofile="coverage.txt" -coverpkg=github.com/pulumi/pulumi-go-provider/... GO_TEST=go test ${GO_TEST_FLAGS} build: diff --git a/codecov.yml b/codecov.yml index bfdc987..8f869a3 100644 --- a/codecov.yml +++ b/codecov.yml @@ -6,3 +6,6 @@ coverage: patch: default: informational: true +ignore: + # Examples implementation code should not count against coverage. + - "examples/"