check effect of parallel flag

This commit is contained in:
HiteshRepo 2024-01-28 14:33:16 +05:30
parent 9665a2401c
commit aaea75590c

View File

@ -312,6 +312,7 @@ jobs:
go test \ go test \
-tags testing \ -tags testing \
-failfast \ -failfast \
-p 1 \
-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
@ -319,6 +320,7 @@ jobs:
go test \ go test \
-tags testing \ -tags testing \
-failfast \ -failfast \
-p 1 \
-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