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