check effect of verbosity flag

This commit is contained in:
HiteshRepo 2024-01-28 14:24:25 +05:30
parent 5f7468aa02
commit fcf327c5e4

View File

@ -311,12 +311,14 @@ jobs:
# Run the first test # Run the first test
go test \ go test \
-tags testing \ -tags testing \
- v \
-run '^TestPathUnitSuite/Test_Stuff$' ./pkg/path \ -run '^TestPathUnitSuite/Test_Stuff$' ./pkg/path \
2>&1 | tee -a ./testlog/gotest-unit.log 2>&1 | tee -a ./testlog/gotest-unit.log
# Run the second test # Run the second test
go test \ go test \
-tags testing \ -tags testing \
- v \
-run '^TestRepositoryModelIntgSuite/Test_SomeMore$' ./pkg/repository \ -run '^TestRepositoryModelIntgSuite/Test_SomeMore$' ./pkg/repository \
2>&1 | tee -a ./testlog/gotest-unit.log 2>&1 | tee -a ./testlog/gotest-unit.log