@@ -37,7 +37,7 @@ func TestDotfiles(t *testing.T) {
37
37
err = c .Run ()
38
38
require .NoError (t , err )
39
39
40
- c = exec .Command ("git" , "commit" , "-m" , `"add .bashrc"` )
40
+ c = exec .Command ("git" , "commit" , "-m" , `"add .bashrc"` , `--no-gpg-sign` )
41
41
c .Dir = testRepo
42
42
out , err := c .CombinedOutput ()
43
43
require .NoError (t , err , string (out ))
@@ -64,7 +64,7 @@ func TestDotfiles(t *testing.T) {
64
64
err = c .Run ()
65
65
require .NoError (t , err )
66
66
67
- c = exec .Command ("git" , "commit" , "-m" , `"add .bashrc"` )
67
+ c = exec .Command ("git" , "commit" , "-m" , `"add .bashrc"` , `--no-gpg-sign` )
68
68
c .Dir = testRepo
69
69
out , err := c .CombinedOutput ()
70
70
require .NoError (t , err , string (out ))
@@ -95,7 +95,7 @@ func TestDotfiles(t *testing.T) {
95
95
err = c .Run ()
96
96
require .NoError (t , err )
97
97
98
- c = exec .Command ("git" , "commit" , "-m" , `"add .bashrc"` )
98
+ c = exec .Command ("git" , "commit" , "-m" , `"add .bashrc"` , `--no-gpg-sign` )
99
99
c .Dir = testRepo
100
100
out , err := c .CombinedOutput ()
101
101
require .NoError (t , err , string (out ))
@@ -129,7 +129,7 @@ func TestDotfiles(t *testing.T) {
129
129
err = c .Run ()
130
130
require .NoError (t , err )
131
131
132
- c = exec .Command ("git" , "commit" , "-m" , `"add install.sh"` )
132
+ c = exec .Command ("git" , "commit" , "-m" , `"add install.sh"` , `--no-gpg-sign` )
133
133
c .Dir = testRepo
134
134
err = c .Run ()
135
135
require .NoError (t , err )
@@ -151,7 +151,7 @@ func TestDotfiles(t *testing.T) {
151
151
testRepo := testGitRepo (t , root )
152
152
153
153
// We need an initial commit to start the `main` branch
154
- c := exec .Command ("git" , "commit" , "--allow-empty" , "-m" , `"initial commit"` )
154
+ c := exec .Command ("git" , "commit" , "--allow-empty" , "-m" , `"initial commit"` , `--no-gpg-sign` )
155
155
c .Dir = testRepo
156
156
err := c .Run ()
157
157
require .NoError (t , err )
@@ -170,7 +170,7 @@ func TestDotfiles(t *testing.T) {
170
170
err = c .Run ()
171
171
require .NoError (t , err )
172
172
173
- c = exec .Command ("git" , "commit" , "-m" , `"add install.sh"` )
173
+ c = exec .Command ("git" , "commit" , "-m" , `"add install.sh"` , `--no-gpg-sign` )
174
174
c .Dir = testRepo
175
175
err = c .Run ()
176
176
require .NoError (t , err )
@@ -207,7 +207,7 @@ func TestDotfiles(t *testing.T) {
207
207
err = c .Run ()
208
208
require .NoError (t , err )
209
209
210
- c = exec .Command ("git" , "commit" , "-m" , `"add .bashrc"` )
210
+ c = exec .Command ("git" , "commit" , "-m" , `"add .bashrc"` , `--no-gpg-sign` )
211
211
c .Dir = testRepo
212
212
out , err := c .CombinedOutput ()
213
213
require .NoError (t , err , string (out ))
0 commit comments