Skip to content

Commit

Permalink
test: skip test on Windows for now
Browse files Browse the repository at this point in the history
see #502
  • Loading branch information
alcarney committed Oct 8, 2024
1 parent ed4d383 commit be62b54
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/e2e/test_threaded_handlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
import pytest
import pytest_asyncio
from lsprotocol import types
from pygls import IS_WIN
from pygls.exceptions import JsonRpcInternalError

if typing.TYPE_CHECKING:
Expand Down Expand Up @@ -122,6 +123,9 @@ async def test_countdown_blocking(


@pytest.mark.asyncio(scope="function")
@pytest.mark.skipif(
IS_WIN, reason="see https://github.com/openlawlibrary/pygls/issues/502"
)
async def test_countdown_threaded(
threaded_handlers: Tuple[BaseLanguageClient, types.InitializeResult], uri_for
):
Expand Down

0 comments on commit be62b54

Please sign in to comment.