From 3fced5c89f65f5f1c670705b4cfe660c2e025d05 Mon Sep 17 00:00:00 2001 From: Michele Zanotti Date: Tue, 6 Aug 2024 17:19:36 +0200 Subject: [PATCH] don't run tests in verbose mode --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a456088..edecdce 100644 --- a/Makefile +++ b/Makefile @@ -31,7 +31,7 @@ validate: .PHONY: test test: ## Run the tests @echo "\033[0;33m[Running tests...]\033[0m" - @terraform test --verbose + @terraform test @echo "${OK}" .PHONY: formatting