Don't delete gitlab-test-fork folder after every test run
This commit is contained in:
parent
cfbff017d0
commit
1c49809bf8
1 changed files with 2 additions and 1 deletions
|
@ -35,6 +35,7 @@ module TestEnv
|
||||||
|
|
||||||
# Create repository for FactoryGirl.create(:project)
|
# Create repository for FactoryGirl.create(:project)
|
||||||
setup_factory_repo
|
setup_factory_repo
|
||||||
|
|
||||||
# Create repository for FactoryGirl.create(:forked_project_with_submodules)
|
# Create repository for FactoryGirl.create(:forked_project_with_submodules)
|
||||||
setup_forked_repo
|
setup_forked_repo
|
||||||
end
|
end
|
||||||
|
@ -54,7 +55,7 @@ module TestEnv
|
||||||
tmp_test_path = Rails.root.join('tmp', 'tests', '**')
|
tmp_test_path = Rails.root.join('tmp', 'tests', '**')
|
||||||
|
|
||||||
Dir[tmp_test_path].each do |entry|
|
Dir[tmp_test_path].each do |entry|
|
||||||
unless File.basename(entry) =~ /\Agitlab-(shell|test)\z/
|
unless File.basename(entry) =~ /\Agitlab-(shell|test|test-fork)\z/
|
||||||
FileUtils.rm_rf(entry)
|
FileUtils.rm_rf(entry)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue