Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions test/asynchronous/test_srv_polling.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
import time
from test.utils_shared import FunctionCallRecorder
from typing import Any
from unittest import skipIf

sys.path[0:0] = [""]

Expand Down Expand Up @@ -91,6 +92,7 @@ def __exit__(self, exc_type, exc_val, exc_tb):
self.disable()


@skipIf(not _IS_SYNC and sys.platform == "win32", "PYTHON-5342 known issue on Windows")
class TestSrvPolling(AsyncPyMongoTestCase):
BASE_SRV_RESPONSE = [
("localhost.test.build.10gen.cc", 27017),
Expand Down
2 changes: 2 additions & 0 deletions test/test_srv_polling.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
import time
from test.utils_shared import FunctionCallRecorder
from typing import Any
from unittest import skipIf

sys.path[0:0] = [""]

Expand Down Expand Up @@ -91,6 +92,7 @@ def __exit__(self, exc_type, exc_val, exc_tb):
self.disable()


@skipIf(not _IS_SYNC and sys.platform == "win32", "PYTHON-5342 known issue on Windows")
class TestSrvPolling(PyMongoTestCase):
BASE_SRV_RESPONSE = [
("localhost.test.build.10gen.cc", 27017),
Expand Down
Loading