github.com/moreal/bencodex-go@v0.0.0-20231021172012-18277a477d15/Makefile (about)

     1  coveralls:
     2  	goveralls -service=travis-ci
     3  
     4  test:
     5  	go test -v -race
     6  
     7  test-dict-encode:
     8  	richgo test -v --count=1000 -run=TestMarshalUnOrderedDict
     9  
    10  bench:
    11  	go test -v -bench=. -run "^Benchmark"
    12  
    13  all: test