mirror of https://github.com/VinGarcia/ksql.git
Update Makefile to run all tests locally
parent
60835ac429
commit
4e3cc96919
4
Makefile
4
Makefile
|
@ -7,6 +7,10 @@ TIME=1s
|
|||
|
||||
test: setup
|
||||
$(GOBIN)/richgo test $(path) $(args)
|
||||
@( cd adapters/kpgx ; $(GOBIN)/richgo test $(path) $(args) )
|
||||
@( cd adapters/kmysql ; $(GOBIN)/richgo test $(path) $(args) )
|
||||
@( cd adapters/ksqlserver ; $(GOBIN)/richgo test $(path) $(args) )
|
||||
@( cd adapters/ksqlite3 ; $(GOBIN)/richgo test $(path) $(args) )
|
||||
|
||||
bench:
|
||||
cd benchmarks && go test -bench=. -benchtime=$(TIME)
|
||||
|
|
Loading…
Reference in New Issue