aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorShulhan <ms@kilabit.info>2026-01-22 04:15:47 +0700
committerShulhan <ms@kilabit.info>2026-01-22 04:15:47 +0700
commita33efc3992f58355eb98d7a5574df955952924b8 (patch)
tree4a7d00be605fff1980a14a4c2c33a60ec91bc71b /Makefile
parenta559b47dc217793ca7f80121b3ea86f03e47afd3 (diff)
downloadjarink-a33efc3992f58355eb98d7a5574df955952924b8.tar.xz
all: mark and skip the slow test
The TestScan_slow takes around ~11 seconds due to test include [time.Sleep].
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 0226504..ee4eb7e 100644
--- a/Makefile
+++ b/Makefile
@@ -14,7 +14,7 @@ lint:
.PHONY: test
test:
- CGO_ENABLED=1 go test -failfast -timeout=1m -race \
+ CGO_ENABLED=1 go test -failfast -timeout=1m -race -short -v \
-coverprofile=$(COVER_OUT) ./...
go tool cover -html=$(COVER_OUT) -o $(COVER_HTML)