summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Greiling <mike@pixelcog.com>2019-07-17 17:53:37 -0500
committerMike Greiling <mike@pixelcog.com>2019-07-19 02:00:47 -0500
commit37973465f5be9ef92d3186f5bbb9823619b1b4a2 (patch)
treefec7748e0e17aa4ca428e9793424413d39a9022f
parentafd39a8df0a78b3648656f8d899f605d51600b23 (diff)
downloadgitlab-ce-37973465f5be9ef92d3186f5bbb9823619b1b4a2.tar.gz
Don't kill the fixtures directory between tests
-rw-r--r--spec/support/helpers/test_env.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/support/helpers/test_env.rb b/spec/support/helpers/test_env.rb
index 16938da50cc..71f86a4102d 100644
--- a/spec/support/helpers/test_env.rb
+++ b/spec/support/helpers/test_env.rb
@@ -130,7 +130,7 @@ module TestEnv
# Keeps gitlab-shell and gitlab-test
def clean_test_path
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)
end
end