Files
cogito/Makefile
Ettore Di Giacinto 8e6a679d68 Bump timeout for tests
Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
2026-01-15 18:25:59 +01:00

12 lines
367 B
Makefile

GINKGO_ARGS?=--fail-fast -v -r --flake-attempts=5
LOG_LEVEL?=debug
E2E_TIMEOUT?=2h
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) --timeout=$(E2E_TIMEOUT) --label-filter=e2e
example-chat:
go run examples/chat/main.go