mirror of
https://github.com/gohugoio/hugo.git
synced 2026-08-24 15:28:54 +00:00
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:
+2
-2
@@ -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())
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user