We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8bd797d + dab6f7f commit 3386a74Copy full SHA for 3386a74
Tests/Get/RawCloneTests.swift
@@ -48,6 +48,7 @@ private func makeGitRepo(dstdir: String, tag: String?, file: StaticString = #fil
48
try popen(["git", "-C", dstdir, "init"])
49
try popen(["git", "-C", dstdir, "config", "user.email", "[email protected]"])
50
try popen(["git", "-C", dstdir, "config", "user.name", "Example Example"])
51
+ try popen(["git", "-C", dstdir, "config", "commit.gpgsign", "false"])
52
try popen(["git", "-C", dstdir, "add", "."])
53
try popen(["git", "-C", dstdir, "commit", "-m", "msg"])
54
if let tag = tag {
@@ -115,7 +116,6 @@ extension GitTests: XCTestCaseProvider {
115
116
("testHasNoVersion", testHasNoVersion),
117
("testCloneShouldNotCrashWihoutTags", testCloneShouldNotCrashWihoutTags),
118
("testCloneShouldCrashWihoutTags", testCloneShouldCrashWihoutTags),
-
119
]
120
}
121
0 commit comments