From 5ac8ef51c99c35d302d7a91de63e7586249eb36c Mon Sep 17 00:00:00 2001 From: Peter Kurfer Date: Sun, 7 Aug 2022 20:10:40 +0200 Subject: [PATCH] docs: run tests with gotestsum --- .agola/config.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.agola/config.yml b/.agola/config.yml index 8507e54..5ac7c24 100644 --- a/.agola/config.yml +++ b/.agola/config.yml @@ -13,6 +13,9 @@ runs: privileged: true steps: - clone: + - run: + name: Install Go tools + command: go install gotest.tools/gotestsum@latest - run: name: run all tests - command: go test ./... + command: gotestsum -f pkgname-and-test-fails -- -race -shuffle=on ./...