Skip to content

Commit 02b4135

Browse files
committed
test(plugins): skip non-native hook fake on Windows
Signed-off-by: phernandez <paul@basicmachines.co>
1 parent be19ae7 commit 02b4135

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

tests/test_claude_plugin_hooks.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,10 @@ def test_session_start_preserves_raw_cli_path_with_spaces(hook_harness: HookHarn
163163
assert "**Project:** global-project" in result.stdout
164164

165165

166+
@pytest.mark.skipif(
167+
os.name == "nt",
168+
reason="Windows cannot execute the fixture's extensionless shebang script directly",
169+
)
166170
def test_session_start_discovers_basic_memory_from_path(hook_harness: HookHarness) -> None:
167171
hook_harness.write_settings(
168172
hook_harness.home,

0 commit comments

Comments
 (0)