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.
1 parent f4c0eab commit f7f2f9dCopy full SHA for f7f2f9d
cli/dotfiles_test.go
@@ -17,6 +17,10 @@ import (
17
18
func TestDotfiles(t *testing.T) {
19
t.Parallel()
20
+ // This test will time out if the user has commit signing enabled.
21
+ if _, gpgTTYFound := os.LookupEnv("GPG_TTY"); gpgTTYFound {
22
+ t.Skip("GPG_TTY is set, skipping test to avoid hanging")
23
+ }
24
t.Run("MissingArg", func(t *testing.T) {
25
26
inv, _ := clitest.New(t, "dotfiles")
0 commit comments