Skip to content

Commit f273c3c

Browse files
committed
test: increase timeout for slow performance on win CI
1 parent 069b00a commit f273c3c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/integration/performance_test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ def test_fetch_and_load(wiki_domain, wiki_username, wiki_password, mocker):
6969
end_time = time.time()
7070
print(f"Time taken to fetch 50 Category pages: {end_time - start_time}")
7171
assert (
72-
end_time - start_time < 15
73-
) # typically takes 3.5 (dask) or 2.7 (asyncio) seconds
72+
end_time - start_time < 60
73+
) # typically takes 3.5 (dask) or 2.7 (asyncio) seconds, > 20 s in win CI
7474

7575
assert len(result.pages) == 50
7676

0 commit comments

Comments
 (0)