Commit 37973465 authored by Mike Greiling's avatar Mike Greiling

Don't kill the fixtures directory between tests

parent afd39a8d
...@@ -130,7 +130,7 @@ module TestEnv ...@@ -130,7 +130,7 @@ module TestEnv
# Keeps gitlab-shell and gitlab-test # Keeps gitlab-shell and gitlab-test
def clean_test_path def clean_test_path
Dir[TMP_TEST_PATH].each do |entry| Dir[TMP_TEST_PATH].each do |entry|
unless File.basename(entry) =~ /\A(gitaly|gitlab-(shell|test|test_bare|test-fork|test-fork_bare))\z/ unless File.basename(entry) =~ /\A(frontend|gitaly|gitlab-(shell|test|test_bare|test-fork|test-fork_bare))\z/
FileUtils.rm_rf(entry) FileUtils.rm_rf(entry)
end end
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment