From 94ace1c13ecd0b8d07ed8437a1f03201da4de660 Mon Sep 17 00:00:00 2001 From: Nat Henderson Date: Mon, 4 Oct 2021 14:03:19 -0700 Subject: [PATCH] Don't test the scripts/ directory since it contains code that can't be tested. (#3687) * Don't test the scripts/ directory since it contains code that requires temporary mods to go.mod. * Specifically only the main scripts need to be excluded. Co-authored-by: Modular Magician --- GNUmakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GNUmakefile b/GNUmakefile index e388b8b0c8..297eadecda 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -1,4 +1,4 @@ -TEST?=$$(go list ./...) +TEST?=$$(go list ./... | grep -v github.com/hashicorp/terraform-provider-google-beta/scripts) WEBSITE_REPO=github.com/hashicorp/terraform-website PKG_NAME=google DIR_NAME=google-beta