소스 검색

fix: disable GPG signing in snapshot tests (#3102)

Alberto Fanton 4 달 전
부모
커밋
7ef246f98f
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      packages/opencode/test/snapshot/snapshot.test.ts

+ 1 - 1
packages/opencode/test/snapshot/snapshot.test.ts

@@ -14,7 +14,7 @@ async function bootstrap() {
       await Bun.write(`${dir}/a.txt`, aContent)
       await Bun.write(`${dir}/b.txt`, bContent)
       await $`git add .`.cwd(dir).quiet()
-      await $`git commit -m init`.cwd(dir).quiet()
+      await $`git commit --no-gpg-sign -m init`.cwd(dir).quiet()
       return {
         aContent,
         bContent,