Skip to content
This repository was archived by the owner on Mar 9, 2026. It is now read-only.

Commit 2ff9f76

Browse files
committed
ls returns exit code 2 on some operating systems
1 parent 35ae077 commit 2ff9f76

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,5 @@ def test_debug_success(runner):
3737
@pytest.mark.skipif(os.getenv("OPENAI_API_KEY") is None, reason="Skipping live tests without an API key.")
3838
def test_debug_failure(runner):
3939
result = runner.invoke(cli, ["debug", "ls", "-9"])
40-
assert result.exit_code == 1
40+
assert result.exit_code > 0
4141
assert "Running:\nls -9" in result.output

0 commit comments

Comments
 (0)