Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/rspec_helpers.sh')
-rw-r--r--scripts/rspec_helpers.sh10
1 files changed, 0 insertions, 10 deletions
diff --git a/scripts/rspec_helpers.sh b/scripts/rspec_helpers.sh
index 46ffbc223eb..6c39f126afa 100644
--- a/scripts/rspec_helpers.sh
+++ b/scripts/rspec_helpers.sh
@@ -486,13 +486,3 @@ function is_rspec_last_run_results_file_missing() {
return 1
fi
}
-
-function merge_auto_explain_logs() {
- local auto_explain_logs_path="$(dirname "${RSPEC_AUTO_EXPLAIN_LOG_PATH}")/"
-
- for file in ${auto_explain_logs_path}*.gz; do
- (gunzip -c "${file}" && rm -f "${file}" || true)
- done | \
- scripts/merge-auto-explain-logs | \
- gzip -c > "${RSPEC_AUTO_EXPLAIN_LOG_PATH}"
-}