Add fetcher_test.go covering: service creation, start/pause lifecycle, calculatePriority scoring for all label types, label query construction with custom and default labels, gh CLI JSON parsing for both list and single-issue endpoints, channel backpressure when issuesCh is full, fetchAll with no repos configured, and missing binary error handling. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
22 lines
684 B
Modula-2
22 lines
684 B
Modula-2
module github.com/host-uk/core/internal/bugseti
|
|
|
|
go 1.25.5
|
|
|
|
require (
|
|
github.com/mark3labs/mcp-go v0.43.2
|
|
github.com/stretchr/testify v1.9.0
|
|
)
|
|
|
|
require (
|
|
github.com/bahlo/generic-list-go v0.2.0 // indirect
|
|
github.com/buger/jsonparser v1.1.1 // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/google/uuid v1.6.0 // indirect
|
|
github.com/invopop/jsonschema v0.13.0 // indirect
|
|
github.com/mailru/easyjson v0.7.7 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/spf13/cast v1.7.1 // indirect
|
|
github.com/wk8/go-ordered-map/v2 v2.1.8 // indirect
|
|
github.com/yosida95/uritemplate/v3 v3.0.2 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|