Skip to content

Commit a9a87f3

Browse files
committed
increase timeout for tests
1 parent 79982e1 commit a9a87f3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

internal/testutils/testcontainers.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,10 @@ func SetupPostgresContainerWithOptions(t *testing.T, customizer func(*config.Cmd
5656
}
5757

5858
var pge *pgengine.PgEngine
59-
timeout := time.After(30 * time.Second)
59+
timeout := time.After(time.Minute)
6060
done := make(chan bool)
6161
go func() {
62-
pge, err = pgengine.New(ctx, *cmdOpts, log.Init(config.LoggingOpts{LogLevel: "panic"}))
62+
pge, err = pgengine.New(ctx, *cmdOpts, log.Init(config.LoggingOpts{LogLevel: "panic", LogDBLevel: "none"}))
6363
done <- true
6464
}()
6565

0 commit comments

Comments
 (0)