From 901d052c3845fbec4be38d11a8249a2a742e36b3 Mon Sep 17 00:00:00 2001 From: overtrue Date: Sun, 6 Sep 2026 15:45:26 +0800 Subject: [PATCH] test(e2e): declare tempfile for fresh startup fixture --- Cargo.lock | 1 + crates/e2e_test/Cargo.toml | 3 +++ 2 files changed, 4 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index a9fac1098..1305ffca5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4057,6 +4057,7 @@ dependencies = [ "sha1 0.11.0", "sha2 0.11.0", "suppaftp", + "tempfile", "time", "tokio", "tokio-stream", diff --git a/crates/e2e_test/Cargo.toml b/crates/e2e_test/Cargo.toml index ac68cc646..70d1bbeb9 100644 --- a/crates/e2e_test/Cargo.toml +++ b/crates/e2e_test/Cargo.toml @@ -144,3 +144,6 @@ russh = { workspace = true, features = ["serde"] } russh-sftp = { workspace = true } zip.workspace = true clap = { workspace = true, features = ["derive", "env"] } + +[dev-dependencies] +tempfile.workspace = true