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.rb12
1 files changed, 9 insertions, 3 deletions
diff --git a/qa/qa.rb b/qa/qa.rb
index 7d2f363143b..dd6462cfe27 100644
--- a/qa/qa.rb
+++ b/qa/qa.rb
@@ -17,8 +17,6 @@ require 'active_support/core_ext/hash'
require 'active_support/core_ext/object/blank'
require 'rainbow/refinement'
-require_relative 'qa/support/fips'
-
module QA
root = "#{__dir__}/qa"
@@ -67,7 +65,8 @@ module QA
"registry_tls" => "RegistryTLS",
"jetbrains" => "JetBrains",
"vscode" => "VSCode",
- "registry_with_cdn" => "RegistryWithCDN"
+ "registry_with_cdn" => "RegistryWithCDN",
+ "fips" => "FIPS"
)
# Configure knapsack at the very begining of the setup
@@ -77,3 +76,10 @@ module QA
loader.setup
end
+
+# Custom warning processing
+Warning.process do |warning|
+ QA::Runtime::Logger.warn(warning.strip)
+end
+
+Warning.ignore(/already initialized constant Chemlab::Vendor|previous definition of Vendor was here/)