mirror of
https://github.com/mudler/cogito.git
synced 2026-07-23 10:25:44 -04:00
f195b2553f
* feat(todo): add todo-based goal execution similar to cursor agent mode Signed-off-by: Ettore Di Giacinto <mudler@localai.io> * reinforce tests Signed-off-by: Ettore Di Giacinto <mudler@localai.io> * Bump timeout for tests Signed-off-by: Ettore Di Giacinto <mudler@localai.io> * feat: guided tools Signed-off-by: Ettore Di Giacinto <mudler@localai.io> --------- Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
12 lines
367 B
Makefile
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
|