1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-06-23 00:40:06 +02:00

test: reducing test ouput (#3222)

Signed-off-by: Carlos A Becker <caarlos0@users.noreply.github.com>
This commit is contained in:
Carlos Alexandro Becker
2022-07-04 21:13:10 -03:00
committed by GitHub
parent 5b591c9648
commit 5a6dd2fbc8
5 changed files with 2 additions and 6 deletions

View File

@ -206,8 +206,7 @@ func TestRun(t *testing.T) {
for arch, path := range paths {
cmd := exec.Command("go", "build", "-o", path, src)
cmd.Env = append(os.Environ(), "GOOS=darwin", "GOARCH="+arch)
out, err := cmd.CombinedOutput()
t.Log(string(out))
_, err := cmd.CombinedOutput()
require.NoError(t, err)
modTime := time.Unix(0, 0)