diff --git a/Makefile b/Makefile index c9f6ef8..be5774b 100644 --- a/Makefile +++ b/Makefile @@ -10,7 +10,7 @@ tidy: go mod tidy # Run tests -test: tb.ginkgo tidy lint +test: tb.ginkgo $(TB_GINKGO) -r --cover --coverprofile=coverage.out release: tb.goreleaser tb.semver diff --git a/cmd/fetch.go b/cmd/fetch.go index 59999a2..3a41cb0 100644 --- a/cmd/fetch.go +++ b/cmd/fetch.go @@ -27,6 +27,6 @@ func init() { func addConfigFlag(cmd *cobra.Command) { cmd.Flags().StringP(flagConfig, "c", "", - "The config file to be used. (default 1. '.toolbox.yaml' current dir, " + - "2. '~/.config/toolbox.yaml', 3. '~/.toolbox.yaml')") + "The config file to be used. (default 1. '.toolbox.yaml' current dir, "+ + "2. '~/.config/toolbox.yaml', 3. '~/.toolbox.yaml')") } diff --git a/cmd/makefile.go b/cmd/makefile.go index 0cebb28..2e459b9 100644 --- a/cmd/makefile.go +++ b/cmd/makefile.go @@ -36,6 +36,6 @@ func init() { makefileCmd.Flags(). StringVar(&toolsGo, flagToolsGo, "tools.go", "The tools.go file to check for tools dependencies") makefileCmd.Flags(). - BoolVar(&renovate, "renovate", false, "If enables, renovate config is added to the Makefile " + + BoolVar(&renovate, "renovate", false, "If enables, renovate config is added to the Makefile "+ "(renovate.json file, if existing)") }