From aaea75590c10c01bb9c5d7a4615f130941a510c9 Mon Sep 17 00:00:00 2001 From: HiteshRepo Date: Sun, 28 Jan 2024 14:33:16 +0530 Subject: [PATCH] check effect of parallel flag --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c0df0a12d..2f971239d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -312,6 +312,7 @@ jobs: go test \ -tags testing \ -failfast \ + -p 1 \ -run '^TestPathUnitSuite/Test_Stuff$' ./pkg/path \ 2>&1 | tee -a ./testlog/gotest-unit.log @@ -319,6 +320,7 @@ jobs: go test \ -tags testing \ -failfast \ + -p 1 \ -run '^TestRepositoryModelIntgSuite/Test_SomeMore$' ./pkg/repository \ 2>&1 | tee -a ./testlog/gotest-unit.log