fix(integration-tests): keep seed dir alive during local sequencer

This commit is contained in:
Ricardo Guilherme Schmidt 2026-06-29 13:55:53 -03:00
parent 1f22c34c8b
commit 51e4141a93
No known key found for this signature in database
GPG Key ID: 1396EA17DE132FFE

View File

@ -366,8 +366,10 @@ fn ensure_release_guest_builds() -> DynResult<()> {
}
struct LocalSequencer {
// Fields drop in declaration order; shut the node down before seed cleanup.
_node: TestNode,
client: TestNodeClient,
_seed_dir: SeedDirGuard,
}
impl LocalSequencer {
@ -385,6 +387,7 @@ impl LocalSequencer {
Ok(Self {
client: node.client(),
_node: node,
_seed_dir: seed_dir,
})
}