Disable signing of commits

This leads to problems as it requires the unlocked GPG key. It also
slows down the process.
This commit is contained in:
Jean-Claude 2023-10-09 15:09:50 +02:00
parent 255f1df055
commit a6b254ca2d
1 changed files with 6 additions and 0 deletions

View File

@ -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();