Skip to content

Commit

Permalink
chore(test): bump the integration test timeout to 15m (#4880)
Browse files Browse the repository at this point in the history
  • Loading branch information
nikpivkin authored Jul 30, 2023
1 parent 7271d68 commit f9efe44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion magefiles/magefile.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f9efe44

Please sign in to comment.