Files
karma/tools.go
Łukasz Mierzwa a8bd012fec fix(tests): use gocovmerge fork
This one contains fixes for some issues like out of bound panics.
2020-04-06 14:36:29 +01:00

15 lines
435 B
Go

// +build tools
// https://github.com/golang/go/issues/25922#issuecomment-412992431
// this file is to track dev dependencies for go modules that are needed
// to build this project, but they are only CLI tools and don't get imported
package tools
import (
_ "github.com/elazarl/go-bindata-assetfs"
_ "github.com/go-bindata/go-bindata/v3"
_ "github.com/golangci/golangci-lint/pkg/commands"
_ "github.com/hansboder/gocovmerge"
)