Skip to content

Commit bf1f8a4

Browse files
committed
Skip tests for embedded python shell tab-completion on Windows
1 parent 810b50c commit bf1f8a4

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tests/test_py_completion.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
from code import InteractiveConsole
33
from unittest import mock
44

5+
import pytest
6+
7+
pytestmark = pytest.mark.skipif(sys.platform == "win32", reason="This test file is not applicable on Windows")
8+
59

610
def test_py_completion_setup_readline(base_app):
711
# Mock readline and rlcompleter

0 commit comments

Comments
 (0)