test: disable GPG signing in test fixtures (#20386)
This commit is contained in:
parent
e945436b6f
commit
095aeba0a7
5 changed files with 12 additions and 8 deletions
|
|
@ -320,6 +320,7 @@ export async function createTestProject(input?: { serverUrl?: string }) {
|
|||
execSync("git init", { cwd: root, stdio: "ignore" })
|
||||
await fs.writeFile(path.join(root, ".git", "opencode"), id)
|
||||
execSync("git config core.fsmonitor false", { cwd: root, stdio: "ignore" })
|
||||
execSync("git config commit.gpgsign false", { cwd: root, stdio: "ignore" })
|
||||
execSync("git add -A", { cwd: root, stdio: "ignore" })
|
||||
execSync('git -c user.name="e2e" -c user.email="e2e@example.com" commit -m "init" --allow-empty', {
|
||||
cwd: root,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue