Skip to content

Commit 20441ca

Browse files
committed
ci: Prevent early exit on gotestsum failure
1 parent b39ba02 commit 20441ca

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/coder.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -338,6 +338,7 @@ jobs:
338338
else
339339
echo ::set-output name=cover::false
340340
fi
341+
set +e
341342
gotestsum --junitfile="gotests.xml" --jsonfile="gotestsum.json" --packages="./..." --debug -- -parallel=8 -timeout=5m -short -failfast $COVERAGE_FLAGS
342343
ret=$?
343344
if ((ret)); then
@@ -423,6 +424,7 @@ jobs:
423424

424425
- name: Test with PostgreSQL Database
425426
run: |
427+
set +e
426428
make test-postgres
427429
ret=$?
428430
if ((ret)); then

0 commit comments

Comments
 (0)