Skip to content

Commit 644a21b

Browse files
committed
chore: Skip Windows flaky tests
1 parent 29d2585 commit 644a21b

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/unit/test_service_locator.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ def test_custom_storage_client() -> None:
8080
assert storage_client is custom_storage_client
8181

8282

83+
@pytest.mark.skip(reason='Flaky Windows test, see https://github.com/apify/crawlee-python/issues/1441.')
8384
def test_storage_client_overwrite_not_possible() -> None:
8485
custom_storage_client = MemoryStorageClient()
8586
service_locator.set_storage_client(custom_storage_client)
@@ -89,6 +90,7 @@ def test_storage_client_overwrite_not_possible() -> None:
8990
service_locator.set_storage_client(another_custom_storage_client)
9091

9192

93+
@pytest.mark.skip(reason='Flaky Windows test, see https://github.com/apify/crawlee-python/issues/1441.')
9294
def test_storage_client_conflict() -> None:
9395
service_locator.get_storage_client()
9496
custom_storage_client = MemoryStorageClient()

0 commit comments

Comments
 (0)