Skip to content

Commit

Permalink
Tests: Increase timeout for test_can_download_a_static_site_with_unna…
Browse files Browse the repository at this point in the history
…med_root_urls_and_groups
  • Loading branch information
davidfstr committed Dec 26, 2023
1 parent 2bbcb41 commit 93144d6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/crystal/tests/test_workflows.py
Original file line number Diff line number Diff line change
Expand Up @@ -1059,7 +1059,10 @@ async def test_can_download_a_static_site_with_unnamed_root_urls_and_groups() ->

# Expand root resource
home_ti.Expand()
await wait_for(first_child_of_tree_item_is_not_loading_condition(home_ti))
await wait_for(
first_child_of_tree_item_is_not_loading_condition(home_ti),
timeout=4.0 # 2.0s isn't long enough for Windows test runners on GitHub Actions
)
(comic1_ti,) = [
child for child in home_ti.Children
if child.Text.startswith(f'{comic1_url} - ')
Expand Down

0 comments on commit 93144d6

Please sign in to comment.