gtsocial-umbx

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

Makefile (453B)


      1 .PHONY: test fuzz
      2 
      3 test:
      4 	go test -coverprofile=profile.out -coverpkg=github.com/yuin/goldmark,github.com/yuin/goldmark/ast,github.com/yuin/goldmark/extension,github.com/yuin/goldmark/extension/ast,github.com/yuin/goldmark/parser,github.com/yuin/goldmark/renderer,github.com/yuin/goldmark/renderer/html,github.com/yuin/goldmark/text,github.com/yuin/goldmark/util ./...
      5 
      6 cov: test
      7 	go tool cover -html=profile.out
      8 
      9 fuzz:
     10 	cd ./fuzz && go test -fuzz=Fuzz