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
path: root/qa/qa.rb
diff options
context:
space:
mode:
Diffstat (limited to 'qa/qa.rb')
-rw-r--r--qa/qa.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/qa/qa.rb b/qa/qa.rb
index 73bcb6de637..8d358aa2efe 100644
--- a/qa/qa.rb
+++ b/qa/qa.rb
@@ -24,6 +24,7 @@ module QA
loader.push_dir(root, namespace: QA)
loader.ignore("#{root}/specs/features")
+ loader.ignore("#{root}/specs/spec_helper.rb")
loader.inflector.inflect(
"ce" => "CE",
@@ -63,5 +64,10 @@ module QA
"registry_with_cdn" => "RegistryWithCDN"
)
+ # Configure knapsack at the very begining of the setup
+ loader.on_setup do
+ QA::Support::KnapsackReport.configure!
+ end
+
loader.setup
end