Skip to content
This repository was archived by the owner on Dec 29, 2022. It is now read-only.

Commit 74d1800

Browse files
committed
Auto merge of #1731 - Xanewok:bump-timeout, r=ehuss
Bump default integration test message timeout to 30s In case we don't want to introduce another env var to rustc CI script cc rust-lang/rust#84412 r? `@ehuss`
2 parents d1376b5 + 17dfb71 commit 74d1800

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/support/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ pub fn fixtures_dir() -> &'static Path {
2525
///
2626
/// Env var `RLS_TEST_WAIT_FOR_AGES` allows super long waiting for CI
2727
pub fn rls_timeout() -> Duration {
28-
Duration::from_secs(if std::env::var("RLS_TEST_WAIT_FOR_AGES").is_ok() { 300 } else { 15 })
28+
Duration::from_secs(if std::env::var("RLS_TEST_WAIT_FOR_AGES").is_ok() { 300 } else { 30 })
2929
}
3030

3131
/// Parse valid LSP stdout into a list of json messages

0 commit comments

Comments
 (0)