Skip to content

Commit fac9e16

Browse files
committed
Skip a test as Windows has no ptys
1 parent 4924896 commit fac9e16

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

tests/test_llm.py

+3
Original file line numberDiff line numberDiff line change
@@ -572,6 +572,9 @@ def test_model_defaults(tmpdir, monkeypatch):
572572
assert llm.get_model().model_id == "gpt-4o"
573573

574574

575+
@pytest.mark.skipif(
576+
sys.platform.startswith("win"), reason="ptys are not supported on Windows"
577+
)
575578
def test_interactive_llm_empty_prompt():
576579
runner = CliRunner()
577580
# use a pty for stdin

0 commit comments

Comments
 (0)