Skip to content

Commit c531c0d

Browse files
ndbroadbentclaude
andcommitted
fix: disable signal tests on Windows
Signal-based tests use Unix-specific libc::kill and POSIX signals that don't exist on Windows. Disable these tests on Windows platform. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent a34186b commit c531c0d

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

renamify-cli/src/test_lock_signals.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#[cfg(test)]
2+
#[cfg(unix)] // Signal tests only work on Unix-like systems
23
#[allow(unused_mut)]
34
mod signal_tests {
45
use assert_cmd::Command as AssertCommand;

0 commit comments

Comments
 (0)