diff options
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/common/purgatory_helpers.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/common/purgatory_helpers.rs b/tests/common/purgatory_helpers.rs index fa1be73..125f485 100644 --- a/tests/common/purgatory_helpers.rs +++ b/tests/common/purgatory_helpers.rs | |||
| @@ -51,6 +51,10 @@ pub fn create_test_repo_with_commit(path: &Path, variant: CommitVariant) -> Resu | |||
| 51 | // Configure git user for commits | 51 | // Configure git user for commits |
| 52 | run_git(path, &["config", "user.email", "test@example.com"])?; | 52 | run_git(path, &["config", "user.email", "test@example.com"])?; |
| 53 | run_git(path, &["config", "user.name", "Test User"])?; | 53 | run_git(path, &["config", "user.name", "Test User"])?; |
| 54 | |||
| 55 | // Disable GPG signing for tests (prevents yubikey prompts) | ||
| 56 | run_git(path, &["config", "commit.gpgsign", "false"])?; | ||
| 57 | run_git(path, &["config", "tag.gpgsign", "false"])?; | ||
| 54 | 58 | ||
| 55 | // Create a file based on variant | 59 | // Create a file based on variant |
| 56 | let (filename, content) = match variant { | 60 | let (filename, content) = match variant { |