diff --git a/src/git.rs b/src/git.rs index d857b05..86f8d33 100644 --- a/src/git.rs +++ b/src/git.rs @@ -186,6 +186,8 @@ mod tests { .arg("--allow-empty") .arg("--message") .arg("INITIAL COMMIT") + .arg("--no-signoff") + .arg("--no-gpg-sign") .current_dir(&tmp_dir) .output() .expect("Failed to run command"); @@ -323,6 +325,8 @@ mod tests { .arg("commit") .arg("--message") .arg("Add FILE1") + .arg("--no-signoff") + .arg("--no-gpg-sign") .current_dir(&repository.1) .output() .unwrap(); @@ -346,6 +350,8 @@ mod tests { .arg("commit") .arg("--message") .arg("Update FILE1") + .arg("--no-signoff") + .arg("--no-gpg-sign") .current_dir(&repository.1) .output() .unwrap();