Merge pull request #9044 from tsigo/rs-git-template-env

Define GIT_TEMPLATE_DIR environment variable in TestEnv
This commit is contained in:
Dmitriy Zaporozhets 2015-03-29 03:40:56 -07:00
commit 275f64fb86
1 changed files with 7 additions and 1 deletions

View File

@ -85,7 +85,7 @@ module TestEnv
end
# We must copy bare repositories because we will push to them.
system(*%W(git clone -q --bare #{factory_repo_path} #{factory_repo_path_bare}))
system(git_env, *%W(git clone -q --bare #{factory_repo_path} #{factory_repo_path_bare}))
end
def copy_repo(project)
@ -113,4 +113,10 @@ module TestEnv
def factory_repo_name
'gitlab-test'
end
# Prevent developer git configurations from being persisted to test
# repositories
def git_env
{'GIT_TEMPLATE_DIR' => ''}
end
end