mirror of
				https://github.com/go-gitea/gitea
				synced 2025-11-04 05:18:25 +00:00 
			
		
		
		
	Backport #32813 by @bohde Mac's git installation ships with a system wide config that configures the credential helper `osxkeychain`, which will prompt the user with a dialog. ``` $ git config list --system credential.helper=osxkeychain ``` By setting the environment variable [`GIT_CONFIG_NOSYSTEM=true`](https://git-scm.com/docs/git-config#ENVIRONMENT), Git will not load the system wide config, preventing the dialog from populating. Closes #26717 Co-authored-by: Rowan Bohde <rowan.bohde@gmail.com>
This commit is contained in:
		@@ -118,6 +118,11 @@ func TestMain(m *testing.M) {
 | 
			
		||||
	os.Unsetenv("GIT_COMMITTER_EMAIL")
 | 
			
		||||
	os.Unsetenv("GIT_COMMITTER_DATE")
 | 
			
		||||
 | 
			
		||||
	// Avoid loading the default system config. On MacOS, this config
 | 
			
		||||
	// sets the osxkeychain credential helper, which will cause tests
 | 
			
		||||
	// to freeze with a dialog.
 | 
			
		||||
	os.Setenv("GIT_CONFIG_NOSYSTEM", "true")
 | 
			
		||||
 | 
			
		||||
	err := unittest.InitFixtures(
 | 
			
		||||
		unittest.FixturesOptions{
 | 
			
		||||
			Dir: filepath.Join(filepath.Dir(setting.AppPath), "models/fixtures/"),
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user