Fix e2e tests

Signed-off-by: Émile Ré <emile@getprobo.com>
This commit is contained in:
Émile Ré
2026-02-06 14:38:14 +04:00
parent 9243681f1b
commit 8d20220c86
25 changed files with 323 additions and 1142 deletions

View File

@@ -24,6 +24,8 @@ import (
"sync"
"syscall"
"time"
"go.gearno.de/kit/log"
)
var (
@@ -65,7 +67,7 @@ func Setup() {
done: make(chan error, 1),
}
cmd := exec.Command(binaryPath, "-cfg-file", configPath)
cmd := exec.Command(binaryPath, "-cfg-file", configPath, "-format", log.FormatPretty)
if coverDir != "" {
cmd.Env = append(os.Environ(), "GOCOVERDIR="+coverDir)
} else {