Files
Ettore Di Giacinto 1da77d69b5 Split e2e and unit tests
Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
2025-09-28 20:53:49 +02:00

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