gopkg.in/rethinkdb/rethinkdb-go.v6@v6.2.2/Makefile (about)

     1  test:
     2  	go test -coverprofile=cover.out -race gopkg.in/rethinkdb/rethinkdb-go.v6 gopkg.in/rethinkdb/rethinkdb-go.v6/encoding gopkg.in/rethinkdb/rethinkdb-go.v6/types
     3  	go tool cover -html=cover.out -o cover.html
     4  	rm -f cover.out
     5  
     6  integration:
     7  	go test -race gopkg.in/rethinkdb/rethinkdb-go.v6/internal/integration/...
     8  
     9  benchpool:
    10  	go test -v -cpu 1,2,4,8,16,24,32,64,128,256 -bench=BenchmarkConnectionPool -run ^$ ./internal/integration/tests/
    11  
    12  generate:
    13  	go generate ./internal/...
    14