From 7830ecef42be3b240ed5cab26630250c4f8fe474 Mon Sep 17 00:00:00 2001 From: Khue Doan Date: Wed, 3 Aug 2022 19:29:48 +0700 Subject: [PATCH] style: add color to test output --- test/Makefile | 2 +- test/integration_test.go | 2 +- tools/Dockerfile | 2 ++ 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/test/Makefile b/test/Makefile index 8c2e414b..be3533c7 100644 --- a/test/Makefile +++ b/test/Makefile @@ -3,4 +3,4 @@ default: test test: - go test -v -timeout 30m + grc go test -v -timeout 30m diff --git a/test/integration_test.go b/test/integration_test.go index 1130d7e5..8fea5ce0 100644 --- a/test/integration_test.go +++ b/test/integration_test.go @@ -33,7 +33,7 @@ func TestArgoCDCheck(t *testing.T) { fmt.Sprintf("https://%s", ingress.Spec.Rules[0].Host), &tlsConfig, 30, - 10*time.Second, + 30*time.Second, func(statusCode int, body string) bool { return statusCode == 200 }, diff --git a/tools/Dockerfile b/tools/Dockerfile index af572c90..40f564f4 100644 --- a/tools/Dockerfile +++ b/tools/Dockerfile @@ -16,7 +16,9 @@ RUN pacman --sync --refresh --noconfirm \ docker \ docker-compose \ git \ + go \ graphviz \ + grc \ helm \ k9s \ kubectl \