From 35c2ac64f995366727d750f155ab3739ce392a5d Mon Sep 17 00:00:00 2001 From: Pawel Date: Wed, 28 Feb 2024 01:51:33 -0800 Subject: [PATCH] fixing Makefile --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index a149261d..3c018534 100644 --- a/Makefile +++ b/Makefile @@ -42,8 +42,9 @@ test: @#echo $(TEST) | xargs -t -n4 go test $(TESTARGS) -timeout=30s -parallel=4 testacc: - TF_ACC=1 TERRAFORM_PROVIDER_ROLLBAR_DEBUG=1 go test -covermode=atomic -coverprofile=coverage.out $(TEST) -v $(TESTARGS) -timeout 120m - + TF_ACC=1 TERRAFORM_PROVIDER_ROLLBAR_DEBUG=1 go test -covermode=atomic -coverprofile=coverage_client.out client -v $(TESTARGS) -timeout 10m + TF_ACC=1 TERRAFORM_PROVIDER_ROLLBAR_DEBUG=1 go test -covermode=atomic -coverprofile=coverage_project.out rollbar -v $(TESTARGS) -timeout 10m -testify.m ^TestAccProject + cat coverage_client.out coverage_project.out > coverage.out slscan: ./.slscan.sh