tests/cli/session/Taskfile.yaml + tests/cli/session/main.go — driver builds a synthetic JSONL session and exercises parse, analytics, search, list, fetch, and HTML rendering paths. Verification: task -d tests/cli/session + go test + go vet all pass. Closes tasks.lthn.sh/view.php?id=670 Co-authored-by: Codex <noreply@openai.com>
14 lines
183 B
YAML
14 lines
183 B
YAML
version: "3"
|
|
|
|
env:
|
|
GOWORK: off
|
|
GOCACHE: /tmp/go-session-go-build-cache
|
|
|
|
tasks:
|
|
default:
|
|
deps: [test]
|
|
|
|
test:
|
|
dir: ../../..
|
|
cmds:
|
|
- go run ./tests/cli/session
|