From 032b8cb1cc36046fb48bf7fef2ece1aa2ad9b5a1 Mon Sep 17 00:00:00 2001 From: Stan Hu Date: Fri, 8 Jun 2018 21:41:42 -0700 Subject: Prevent ENV from leaking variables in CI output --- qa/spec/support/stub_env.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/qa/spec/support/stub_env.rb b/qa/spec/support/stub_env.rb index bc8f3a5e22e..044804cd599 100644 --- a/qa/spec/support/stub_env.rb +++ b/qa/spec/support/stub_env.rb @@ -32,6 +32,8 @@ module Support allow(ENV).to receive(:[]).and_call_original allow(ENV).to receive(:key?).and_call_original allow(ENV).to receive(:fetch).and_call_original + # Prevent secrets from leaking in CI + allow(ENV).to receive(:inspect).and_return([]) add_stubbed_value(STUBBED_KEY, true) end end -- cgit v1.2.1