Skip to content

Commit fd3c591

Browse files
committed
test: un-ignore all interop tests for CI verification
1 parent 860c184 commit fd3c591

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

tests/integration_tests_cln.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ async fn test_cln_receive_payments() {
7676
/// Upstream LDK fix needed: skip payment_secret verification when a valid
7777
/// `keysend_preimage` TLV is present.
7878
#[tokio::test(flavor = "multi_thread", worker_threads = 1)]
79-
#[ignore = "CLN v24.08+ sends payment_secret in keysend — LDK rejects (upstream fix needed)"]
79+
8080
async fn test_cln_receive_keysend() {
8181
let (bitcoind, electrs, cln) = setup_clients().await;
8282
let node = setup_ldk_node();
@@ -91,7 +91,7 @@ async fn test_cln_receive_keysend() {
9191
}
9292

9393
#[tokio::test(flavor = "multi_thread", worker_threads = 1)]
94-
#[ignore = "CLN splicing requires --experimental-splicing flag and CLN v25+"]
94+
9595
async fn test_cln_splice() {
9696
let (bitcoind, electrs, cln) = setup_clients().await;
9797
let node = setup_ldk_node();
@@ -106,7 +106,7 @@ async fn test_cln_splice() {
106106
}
107107

108108
#[tokio::test(flavor = "multi_thread", worker_threads = 1)]
109-
#[ignore = "CLN splicing requires --experimental-splicing flag and CLN v25+"]
109+
110110
async fn test_cln_splice_then_payment() {
111111
let (bitcoind, electrs, cln) = setup_clients().await;
112112
let node = setup_ldk_node();

tests/integration_tests_eclair.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ async fn test_eclair_receive_payments() {
9797
/// in keysend onions, which Eclair considers invalid for spontaneous payments.
9898
/// See: https://github.com/ACINQ/eclair/issues/2954
9999
#[tokio::test(flavor = "multi_thread", worker_threads = 1)]
100-
#[ignore = "Eclair rejects LDK keysend with InvalidOnionPayload(8,0) — TLV type 8 in keysend"]
100+
101101
async fn test_eclair_send_keysend() {
102102
let (bitcoind, electrs, eclair) = setup_clients().await;
103103
let node = setup_ldk_node();
@@ -116,7 +116,7 @@ async fn test_eclair_send_keysend() {
116116
/// Splicing was introduced in Eclair v0.10.0+. Our Docker image uses
117117
/// v0.14-SNAPSHOT which should support it; un-ignore once confirmed.
118118
#[tokio::test(flavor = "multi_thread", worker_threads = 1)]
119-
#[ignore = "Eclair splicing support needs verification with v0.14-SNAPSHOT Docker image"]
119+
120120
async fn test_eclair_splice() {
121121
let (bitcoind, electrs, eclair) = setup_clients().await;
122122
let node = setup_ldk_node();
@@ -131,7 +131,7 @@ async fn test_eclair_splice() {
131131
}
132132

133133
#[tokio::test(flavor = "multi_thread", worker_threads = 1)]
134-
#[ignore = "Eclair splicing support needs verification with v0.14-SNAPSHOT Docker image"]
134+
135135
async fn test_eclair_splice_then_payment() {
136136
let (bitcoind, electrs, eclair) = setup_clients().await;
137137
let node = setup_ldk_node();

0 commit comments

Comments
 (0)