From 74091de8efcfc33658fc9b80cd71eb2487d1721f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Commaille?= Date: Mon, 11 Dec 2023 11:36:30 +0100 Subject: [PATCH] sdk: Make sure "testing" feature is enabled for integration tests MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Kévin Commaille --- crates/matrix-sdk/Cargo.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/crates/matrix-sdk/Cargo.toml b/crates/matrix-sdk/Cargo.toml index b9ce1c897..89bfc8b0c 100644 --- a/crates/matrix-sdk/Cargo.toml +++ b/crates/matrix-sdk/Cargo.toml @@ -159,3 +159,7 @@ wasm-bindgen-test = "0.3.33" [target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies] tokio = { workspace = true, features = ["rt-multi-thread", "macros"] } wiremock = "0.5.13" + +[[test]] +name = "integration" +required-features = ["testing"]