From fcf327c5e40ec8da85ef86e386a6efe079791665 Mon Sep 17 00:00:00 2001 From: HiteshRepo Date: Sun, 28 Jan 2024 14:24:25 +0530 Subject: [PATCH] check effect of verbosity flag --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 76addc5a7..dda62d114 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -311,12 +311,14 @@ jobs: # Run the first test go test \ -tags testing \ + - v \ -run '^TestPathUnitSuite/Test_Stuff$' ./pkg/path \ 2>&1 | tee -a ./testlog/gotest-unit.log # Run the second test go test \ -tags testing \ + - v \ -run '^TestRepositoryModelIntgSuite/Test_SomeMore$' ./pkg/repository \ 2>&1 | tee -a ./testlog/gotest-unit.log