We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 810b50c commit bf1f8a4Copy full SHA for bf1f8a4
tests/test_py_completion.py
@@ -2,6 +2,10 @@
2
from code import InteractiveConsole
3
from unittest import mock
4
5
+import pytest
6
+
7
+pytestmark = pytest.mark.skipif(sys.platform == "win32", reason="This test file is not applicable on Windows")
8
9
10
def test_py_completion_setup_readline(base_app):
11
# Mock readline and rlcompleter
0 commit comments