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 1675224 commit 936f4a9Copy full SHA for 936f4a9
tests/lsp_tests/test_refactoring.py
@@ -1,5 +1,8 @@
1
"""Tests for refactoring requests."""
2
3
+import sys
4
+
5
+import pytest
6
from hamcrest import assert_that, is_
7
8
from tests import TEST_DATA
@@ -341,6 +344,11 @@ def test_rename_package() -> None:
341
344
assert_that(actual, is_(expected))
342
345
343
346
347
+@pytest.mark.skipif(
348
+ sys.platform == "win32",
349
+ reason="Fails on Windows due to how pygls handles line endings "
350
+ "(https://github.com/pappasam/jedi-language-server/issues/159)",
351
+)
352
def test_rename_package_notebook() -> None:
353
"""Tests renaming of an imported package in a notebook."""
354
test_root = REFACTOR_TEST_ROOT / "rename_package_test1"
0 commit comments