Skip to content

Commit bee12c4

Browse files
committed
test(gix-blame): skip perf guard on Windows CI; flaky timers
AI-Assisted: Claude Code AI-Agent-Mode: no AI-MultiLine-Completions: yes (pasted then edited/reviewed) human-reviewed; clippy+tests green:
1 parent 36e0a1c commit bee12c4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

gix-blame/tests/ignore_revisions_perf.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,9 @@ fn simple_performance_test() -> gix_testtools::Result<()> {
138138

139139
Ok(())
140140
}
141-
141+
// Windows CI has noisy timers/scheduler; perf thresholds are flaky there.
142+
// Keep this perf guard active on Unix; skip on Windows.
143+
#[cfg_attr(windows, ignore = "unstable perf threshold on Windows CI")]
142144
#[test]
143145
fn zero_cost_abstraction_verification() {
144146
simple_performance_test().expect("Performance test should pass");

0 commit comments

Comments
 (0)