master
go 15 lines 457 Bytes
Raw
1 // Tracks test tool dependencies in go.mod without importing them in production.
2 //go:build tools
3
4 package tools
5
6 import (
7 _ "github.com/Kubuxu/gocovmerge"
8 _ "github.com/golangci/golangci-lint/cmd/golangci-lint"
9 _ "github.com/ipfs/go-cidutil/cid-fmt"
10 _ "github.com/ipfs/go-test/cli/random-data"
11 _ "github.com/ipfs/go-test/cli/random-files"
12 _ "github.com/ipfs/hang-fds"
13 _ "github.com/multiformats/go-multihash/multihash"
14 _ "gotest.tools/gotestsum"
15 )