Skip to content

Commit 97b480f

Browse files
tzemanovicmergify[bot]
authored andcommitted
test/e2e/ibc: try to kill gaiad before running it
(cherry picked from commit ea853a5)
1 parent b5168e6 commit 97b480f

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

crates/tests/src/e2e/ibc_tests.rs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -988,6 +988,12 @@ fn run_hermes(test: &Test) -> Result<NamadaCmd> {
988988
}
989989

990990
fn run_gaia(test: &Test) -> Result<NamadaCmd> {
991+
// gaiad process is sometimes left lingering causing subsequent runs to fail
992+
std::process::Command::new("pkill")
993+
.args(["-9", "gaiad"])
994+
.output()
995+
.unwrap();
996+
991997
let args = [
992998
"start",
993999
"--pruning",

0 commit comments

Comments
 (0)