Skip to content

Commit

Permalink
fix: do not allow test skipping (#72)
Browse files Browse the repository at this point in the history
  • Loading branch information
fredrikaverpil authored Jun 29, 2024
1 parent 5d13357 commit 8973d54
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 8973d54

Please sign in to comment.