Commit f83aadb
fix: Reduce TEST_CONCURRENCY from 8 to 4 to prevent OOM kills
Each Next.js test spawns a dev/prod server with webpack compilation,
using ~1-2 GB RAM per server. With TEST_CONCURRENCY=8 and 4-core
runners (16 GB RAM), 8 concurrent servers could use 8-16+ GB RAM,
triggering the Linux OOM killer and causing tests to be "killed".
Reducing to 4 concurrent tests (matching core count) should keep
memory usage within bounds while still utilizing available parallelism.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>1 parent 0712a16 commit f83aadb
2 files changed
+10
-4
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
52 | 52 | | |
53 | 53 | | |
54 | 54 | | |
55 | | - | |
56 | | - | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
57 | 60 | | |
58 | 61 | | |
59 | 62 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
42 | 42 | | |
43 | 43 | | |
44 | 44 | | |
45 | | - | |
46 | | - | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
47 | 50 | | |
48 | 51 | | |
49 | 52 | | |
| |||
0 commit comments