Reports
Gooze writes reports after a run. The reports are also used as a cache for incremental runs.
Where reports are stored
Default output directory is usually .gooze-reports/. You can change it with -o/--output.
gooze run -o .gooze-reports ./...What gets written
- One YAML file per report, named by hash:
<hash>.yaml - A summary index file:
_index.yaml
Viewing reports
This reads from the output directory and shows results.
gooze viewIf you used a custom output dir, pass it:
gooze view -o .gooze-reportsCache behavior (incremental runs)
Gooze can reuse stored reports for unchanged sources. If you want to force a full re-run:
gooze run --no-cache ./...