Skip to content

Commit 961237f

Browse files
authored
Merge pull request #3915 from anoma/mergify/bp/0.44.0/pr-3909
test/e2e/ibc: try to killall gaiad before running it (backport #3909)
2 parents b5168e6 + 97b480f commit 961237f

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)