1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2024-12-29 01:44:39 +02:00

fix(ci): less logs in the test output (#3207)

Signed-off-by: Carlos A Becker <caarlos0@users.noreply.github.com>
This commit is contained in:
Carlos Alexandro Becker 2022-06-27 00:13:08 -03:00 committed by GitHub
parent 2ea3e45020
commit 5e57eceb50
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

11
internal/testlib/log.go Normal file
View File

@ -0,0 +1,11 @@
package testlib
import (
"io"
"github.com/caarlos0/log"
)
func init() {
log.Log = log.New(io.Discard)
}