Skip to content

Commit b2b6b52

Browse files
committed
Increase timeout for some tests
1 parent 2b91b6b commit b2b6b52

File tree

3 files changed

+6
-3
lines changed
  • testsuite/ada_lsp

3 files changed

+6
-3
lines changed

testsuite/ada_lsp/config_file/test.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@
2828
# Disable indexing to avoid wasting computation resources and risking test
2929
# timeouts
3030
"enableIndexing": False
31-
}
31+
},
32+
timeout=30,
3233
)
3334
async def do_testing(lsp: ALSLanguageClient) -> None:
3435
# Set configuration file

testsuite/ada_lsp/configuration_warning_null_setting/test.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@
2323
# Disable indexing to avoid wasting computation resources and risking test
2424
# timeouts
2525
"enableIndexing": False
26-
}
26+
},
27+
timeout=30,
2728
)
2829
async def main(lsp: ALSLanguageClient) -> None:
2930
# There is no config file

testsuite/ada_lsp/initial_memory_footprint/test.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,8 @@ async def check_memory_footprint(
4545
"--tracefile",
4646
"./traces_with_runtime_indexing.cfg",
4747
]
48-
)
48+
),
49+
timeout=30,
4950
)
5051
async def test_with_indexing(lsp: ALSLanguageClient) -> None:
5152
await check_memory_footprint(

0 commit comments

Comments
 (0)