This is an automated email from the ASF dual-hosted git repository. gkoszyk pushed a commit to branch fix_config_provider_tests in repository https://gitbox.apache.org/repos/asf/iggy.git
commit 848e9258fe46fee5e7004395b000ff22cfefec91 Author: numminex <[email protected]> AuthorDate: Tue Jul 15 17:34:52 2025 +0200 feat(io_uring): fix config provider integration tests and move tokio from workspace to integration cargo.toml --- core/integration/Cargo.toml | 2 +- core/integration/tests/config_provider/mod.rs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/core/integration/Cargo.toml b/core/integration/Cargo.toml index 7c241429..bd195275 100644 --- a/core/integration/Cargo.toml +++ b/core/integration/Cargo.toml @@ -50,7 +50,7 @@ serial_test = { workspace = true } server = { workspace = true } tempfile = { workspace = true } test-case = { workspace = true } -tokio = { workspace = true } +tokio = { version = "1.45.1", features = ["full"] } compio = { workspace = true } twox-hash = { workspace = true } uuid = { workspace = true } diff --git a/core/integration/tests/config_provider/mod.rs b/core/integration/tests/config_provider/mod.rs index 34b79657..3f5a2710 100644 --- a/core/integration/tests/config_provider/mod.rs +++ b/core/integration/tests/config_provider/mod.rs @@ -36,7 +36,7 @@ async fn scenario_parsing_from_file(extension: &str) { ); } -#[tokio::test] +#[compio::test] async fn validate_server_config_toml_from_repository() { scenario_parsing_from_file("toml").await; } @@ -44,7 +44,7 @@ async fn validate_server_config_toml_from_repository() { // This test needs to be run in serial because it modifies the environment variables // which are shared, since all tests run in parallel by default. #[serial] -#[tokio::test] +#[compio::test] async fn validate_custom_env_provider() { let expected_datagram_send_buffer_size = "1.00 KB"; let expected_quic_certificate_self_signed = false;
