diff --git a/pkg/integration/tests/branch/delete_remote_branch_with_credential_prompt.go b/pkg/integration/tests/branch/delete_remote_branch_with_credential_prompt.go index f145eceaa..5c436c6a8 100644 --- a/pkg/integration/tests/branch/delete_remote_branch_with_credential_prompt.go +++ b/pkg/integration/tests/branch/delete_remote_branch_with_credential_prompt.go @@ -1,6 +1,8 @@ package branch import ( + "runtime" + "github.com/jesseduffield/lazygit/pkg/config" . "github.com/jesseduffield/lazygit/pkg/integration/components" ) @@ -8,7 +10,7 @@ import ( var DeleteRemoteBranchWithCredentialPrompt = NewIntegrationTest(NewIntegrationTestArgs{ Description: "Delete a remote branch where credentials are required", ExtraCmdArgs: []string{}, - Skip: false, + Skip: runtime.GOOS == "windows", SetupConfig: func(config *config.AppConfig) { }, SetupRepo: func(shell *Shell) { diff --git a/pkg/integration/tests/sync/push_with_credential_prompt.go b/pkg/integration/tests/sync/push_with_credential_prompt.go index 79d7fcc1d..fdacf4ea9 100644 --- a/pkg/integration/tests/sync/push_with_credential_prompt.go +++ b/pkg/integration/tests/sync/push_with_credential_prompt.go @@ -1,6 +1,8 @@ package sync import ( + "runtime" + "github.com/jesseduffield/lazygit/pkg/config" . "github.com/jesseduffield/lazygit/pkg/integration/components" ) @@ -8,7 +10,7 @@ import ( var PushWithCredentialPrompt = NewIntegrationTest(NewIntegrationTestArgs{ Description: "Push a commit to a pre-configured upstream, where credentials are required", ExtraCmdArgs: []string{}, - Skip: false, + Skip: runtime.GOOS == "windows", SetupConfig: func(config *config.AppConfig) { }, SetupRepo: func(shell *Shell) {