From 90a896f97e7e55003331b8e55cfc33e3068f1b92 Mon Sep 17 00:00:00 2001 From: Fredrik Averpil Date: Sat, 29 Jun 2024 21:05:38 +0200 Subject: [PATCH] fix: do not allow test skipping --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 80c2be32..fb39e351 100644 --- a/Makefile +++ b/Makefile @@ -31,8 +31,9 @@ test-lua: .PHONY: test-go test-go: + # Do not allow tests to be skipped cd tests/go && \ - go test -v ./... + go test -v ./... | tee /dev/fd/2 | grep -q "SKIP" && exit 1 || exit 0 .PHONY: format-go format-go: