Просмотр исходного кода

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

Alberto Fanton 4 месяцев назад
Родитель
Сommit
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,