From 4d4de161f6b4b9564a4d4a57c8efc78d837407ca Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Mon, 16 Jun 2025 18:25:57 +0300 Subject: add failfast flag to test target in Makefile MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 717d701..71ae1ed 100644 --- a/Makefile +++ b/Makefile @@ -46,4 +46,4 @@ lint: test: ${GO} clean -testcache set -e; find . -name '*_test.go' | while read file; do dirname $$file; done | \ - sort -u | while read dir; do ${GO} test -tags '${GO_TAGS}' --race -v $$dir || exit 2; done + sort -u | while read dir; do ${GO} test -tags '${GO_TAGS}' --race -v -failfast $$dir || exit 2; done -- cgit v1.2.3