From fdf5dc51d7c32a9cdeccde6dcb698427f6d702fa Mon Sep 17 00:00:00 2001 From: Slug-Boi Date: Thu, 10 Apr 2025 12:46:40 +0200 Subject: [PATCH] ci: split flag into 2 inputs --- ci/test_on_push.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/test_on_push.go b/ci/test_on_push.go index 30b4f8d..d38b178 100644 --- a/ci/test_on_push.go +++ b/ci/test_on_push.go @@ -35,7 +35,7 @@ func main() { WithExec([]string{"go", "mod", "tidy"}).WithEnvVariable("CI", "true") // run application tests - out, err := runner.WithWorkdir("/src_d/src").WithExec([]string{"go", "test", "./cmd/utils", "./cmd/tui", "-coverprofile cover.out"}). + out, err := runner.WithWorkdir("/src_d/src").WithExec([]string{"go", "test", "./cmd/utils", "./cmd/tui", "-coverprofile", "cover.out"}). Stderr(ctx) if err != nil { panic(err)