diff --git a/payjoin/contrib/test.sh b/payjoin/contrib/test.sh index c4789812..df2a3028 100755 --- a/payjoin/contrib/test.sh +++ b/payjoin/contrib/test.sh @@ -3,4 +3,4 @@ set -e cargo test --locked --package payjoin --verbose --all-features --lib cargo test --locked --package payjoin --verbose --features=send,receive --test integration -cargo test --locked --package payjoin --verbose --no-default-features --features=send,receive,_danger-local-https,v2 --test integration +cargo test --locked --package payjoin --verbose --no-default-features --features=send,receive,_danger-local-https,v2,io --test integration diff --git a/payjoin/tests/integration.rs b/payjoin/tests/integration.rs index abcf4d7e..b3c6f447 100644 --- a/payjoin/tests/integration.rs +++ b/payjoin/tests/integration.rs @@ -1,4 +1,4 @@ -#[cfg(all(feature = "send", feature = "receive", feature = "_danger-local-https"))] +#[cfg(all(feature = "send", feature = "receive"))] mod integration { use std::collections::HashMap; use std::env; @@ -171,7 +171,7 @@ mod integration { } } - #[cfg(all(feature = "io", feature = "v2"))] + #[cfg(all(feature = "io", feature = "v2", feature = "_danger-local-https"))] mod v2 { use std::sync::Arc; use std::time::Duration;