Skip to content

Commit

Permalink
Run tests fully in docker for now
Browse files Browse the repository at this point in the history
  • Loading branch information
jfldde committed Nov 5, 2024
1 parent 5faa841 commit 99c7f81
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion tests/bitcoin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use anyhow::bail;
use async_trait::async_trait;
use bitcoincore_rpc::{json::IndexStatus, RpcApi};
use citrea_e2e::{
config::{BitcoinConfig, TestCaseConfig},
config::{BitcoinConfig, TestCaseConfig, TestCaseDockerConfig},
framework::TestFramework,
test_case::{TestCase, TestCaseRunner},
traits::Restart,
Expand All @@ -20,6 +20,10 @@ impl TestCase for BasicSyncTest {
with_sequencer: false,
n_nodes: 2,
timeout: Duration::from_secs(60),
docker: TestCaseDockerConfig {
bitcoin: true,
citrea: true,
},
..Default::default()
}
}
Expand Down Expand Up @@ -75,6 +79,10 @@ impl TestCase for RestartBitcoinTest {
fn test_config() -> TestCaseConfig {
TestCaseConfig {
with_sequencer: false,
docker: TestCaseDockerConfig {
bitcoin: true,
citrea: true,
},
..Default::default()
}
}
Expand Down

0 comments on commit 99c7f81

Please sign in to comment.