From 2f7f1ae29543c8183e2683642da85c34fa7efb90 Mon Sep 17 00:00:00 2001 From: Vlada Dusek Date: Fri, 14 Nov 2025 09:47:59 +0100 Subject: [PATCH] chore: Skip flaky test test_crawler_statistics_persistence --- tests/unit/crawlers/_basic/test_basic_crawler.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/unit/crawlers/_basic/test_basic_crawler.py b/tests/unit/crawlers/_basic/test_basic_crawler.py index c7dad2725c..4cbed2c4e2 100644 --- a/tests/unit/crawlers/_basic/test_basic_crawler.py +++ b/tests/unit/crawlers/_basic/test_basic_crawler.py @@ -1673,6 +1673,7 @@ def _process_run_crawler(requests: list[str], storage_dir: str) -> StatisticsSta return asyncio.run(_run_crawler(requests=requests, storage_dir=storage_dir)) +@pytest.mark.skip(reason='This test is flaky, see https://github.com/apify/crawlee-python/issues/1560.') async def test_crawler_statistics_persistence(tmp_path: Path) -> None: """Test that crawler statistics persist and are loaded correctly.