Skip to content

Commit c9702d2

Browse files
committed
chore(MSP-5160): disallow timeouts for Infection, setting maxTimeouts to 0
Why? See https://infection.github.io/2026/01/14/whats-new-in-0.32.3/ in a nutshell: > Slow CI accumulation: You get timeouts to zero, the build is fast. You add a new feature - suddenly 20 new timeouts. Your CI now takes minutes longer. The worst part? There’s no way to know they exist without digging through logs. > Hidden infinite loops: Some timeouts are simple performance hits on slow CI. Others are mutations that create infinite loops-the very test gaps Infection is supposed to find, now hidden among “acceptable” slowdowns.
1 parent 873203f commit c9702d2

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

infection.json5

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,6 @@
77
},
88
"mutators": {
99
"@default": true
10-
}
10+
},
11+
"maxTimeouts": 0
1112
}

0 commit comments

Comments
 (0)