Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions e2e/e2e_config_ci_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,10 @@ func gitInit(t *testing.T, dir string) {
{"init", "-b", "main"},
{"config", "user.email", "test@test.com"},
{"config", "user.name", "test"},
// Host global commit.gpgsign=true would otherwise fail the commit:
// the test identity has no signing key. Local-scope only (cmd.Dir=dir).
{"config", "commit.gpgsign", "false"},
{"config", "tag.gpgsign", "false"},
{"add", "."},
{"commit", "-m", "init"},
}
Expand Down
Loading