From 1269fb6ee903020427191b6069d381b008483d96 Mon Sep 17 00:00:00 2001 From: Nikita Pivkin <100182843+nikpivkin@users.noreply.github.com> Date: Sun, 30 Jul 2023 10:34:48 +0300 Subject: [PATCH] chore(test): bump the integration test timeout to 15m (#4880) --- magefiles/magefile.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/magefiles/magefile.go b/magefiles/magefile.go index 687513ec074b..c13a2e551228 100644 --- a/magefiles/magefile.go +++ b/magefiles/magefile.go @@ -239,7 +239,7 @@ func (t Test) Unit() error { // Integration runs integration tests func (t Test) Integration() error { mg.Deps(t.FixtureContainerImages) - return sh.RunWithV(ENV, "go", "test", "-v", "-tags=integration", "./integration/...", "./pkg/fanal/test/integration/...") + return sh.RunWithV(ENV, "go", "test", "-timeout", "15m", "-v", "-tags=integration", "./integration/...", "./pkg/fanal/test/integration/...") } // K8s runs k8s integration tests