Remove -p 2 parallelism limit for local test runs

Only limit parallelism in CI where memory is constrained.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Bjørn Erik Pedersen
2026-01-26 21:30:04 +01:00
parent 7d45614c6d
commit 9a6bfe2667
+2 -2
View File
@@ -197,7 +197,7 @@ func Test() error {
}
return nil
} else {
return runCmd(env, goexe, "test", "-p", "2", "./...", "-tags", buildTags())
return runCmd(env, goexe, "test", "./...", "-tags", buildTags())
}
}
@@ -221,7 +221,7 @@ func TestRace() error {
}
return nil
} else {
return runCmd(env, goexe, "test", "-p", "2", "-race", "./...", "-tags", buildTags())
return runCmd(env, goexe, "test", "-race", "./...", "-tags", buildTags())
}
}