File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change 7
7
from collections import Counter
8
8
from dataclasses import dataclass
9
9
from datetime import timedelta
10
+ import os
10
11
from pathlib import Path
11
12
from typing import TYPE_CHECKING , Any
12
13
from unittest .mock import AsyncMock , Mock
@@ -890,6 +891,7 @@ async def handler(context: BasicCrawlingContext) -> None:
890
891
assert not datasets_path .exists () or list (datasets_path .iterdir ()) == []
891
892
892
893
894
+ @pytest .mark .skipif (os .name == 'nt' and 'CI' in os .environ , reason = 'Skipped in Windows CI' )
893
895
async def test_logs_final_statistics (monkeypatch : pytest .MonkeyPatch , caplog : pytest .LogCaptureFixture ) -> None :
894
896
# Set the log level to INFO to capture the final statistics log.
895
897
caplog .set_level (logging .INFO )
You can’t perform that action at this time.
0 commit comments