We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbe792e commit 978e064Copy full SHA for 978e064
1 file changed
tests/test_cli.py
@@ -5,6 +5,7 @@
5
6
from __future__ import annotations
7
8
+import sys
9
from functools import partial
10
11
import pytest
@@ -318,6 +319,10 @@ def test_controlx_controlx():
318
319
assert result.text == "hello worldX"
320
321
322
+@pytest.mark.skipif(
323
+ sys.platform.startswith("win"),
324
+ reason="emacs history bindings don't work on Windows",
325
+)
326
def test_emacs_history_bindings():
327
# Adding a new item to the history.
328
history = _history()
@@ -348,6 +353,10 @@ def test_emacs_history_bindings():
348
353
assert result.text == "line2 second input"
349
354
350
355
356
357
358
359
351
360
def test_emacs_reverse_search():
352
361
362
0 commit comments