summaryrefslogtreecommitdiff
path: root/Magefile.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-02-23 13:01:52 +0200
committerPaul Buetow <paul@buetow.org>2026-02-23 13:01:52 +0200
commit438824f16e262f965e344d74b01bf341200a2ffd (patch)
tree17612e07938a16224ca7d7b4c439247e5fb3c2c2 /Magefile.go
parent59df9d8c4562ee46a37256e1330bd5e65781eba7 (diff)
integrationtests: add pidfd_getfd scenarios and tests
Diffstat (limited to 'Magefile.go')
-rw-r--r--Magefile.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/Magefile.go b/Magefile.go
index 1c2e793..4a49f42 100644
--- a/Magefile.go
+++ b/Magefile.go
@@ -79,7 +79,7 @@ func Test() error {
if err := sh.RunWithV(goEnv(), "go", "clean", "-testcache"); err != nil {
return err
}
- return sh.RunWithV(goEnv(), "go", "test", "./...", "-v", "-failfast")
+ return sh.RunWithV(goEnv(), "go", "test", "./...", "-failfast", "-timeout=90m")
}
// TestWithName runs a specific test by name.