mirror of
https://github.com/mudler/cogito.git
synced 2026-07-24 10:55:21 -04:00
1da77d69b5
Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
11 lines
326 B
Makefile
11 lines
326 B
Makefile
GINKGO_ARGS?=--fail-fast -v -r --flake-attempts=5
|
|
LOG_LEVEL?=debug
|
|
|
|
test:
|
|
LOG_LEVEL=$(LOG_LEVEL) go run github.com/onsi/ginkgo/v2/ginkgo $(GINKGO_ARGS) --label-filter=!e2e
|
|
|
|
test-e2e:
|
|
LOG_LEVEL=$(LOG_LEVEL) go run github.com/onsi/ginkgo/v2/ginkgo $(GINKGO_ARGS) --label-filter=e2e
|
|
|
|
example-chat:
|
|
go run examples/chat/main.go
|