aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorShulhan <ms@kilabit.info>2026-01-24 21:49:29 +0700
committerShulhan <ms@kilabit.info>2026-01-24 21:49:29 +0700
commit5f12f2705a29cf9aaff89c6d1f319f080e8d68aa (patch)
treee374c6bf586efd1f1ebe74ef6ad2bbbc5866e9b8 /Makefile
parentec7d47e11094d51e33a19009c5d8819cddaaaf5c (diff)
downloadciigo-5f12f2705a29cf9aaff89c6d1f319f080e8d68aa.tar.xz
all: fix test on GoEmbed
Seems like we use "find ... -delete" for a reason that I forgot. It should not be like that, we will fix it later.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index dac9ae9..39a3bb9 100644
--- a/Makefile
+++ b/Makefile
@@ -16,6 +16,7 @@ lint:
.PHONY: test
test:
+ find ./testdata -name "*.html" -delete
CGO_ENABLED=1 go test -failfast -v -race -p=1 -coverprofile=cover.out ./...
go tool cover -html=cover.out -o cover.html