aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test
diff options
context:
space:
mode:
authorMike McQuaid2017-11-27 10:48:03 +0000
committerMike McQuaid2017-11-27 10:48:03 +0000
commitfb6cf0c3f8cc8e440a9e750878faf13430a1e20a (patch)
treec2c95020b07b20aacf445f9e59290ed790c619ec /Library/Homebrew/test
parente41a0a3b819ff0dcc8d01a70b589288183ec17bf (diff)
downloadbrew-fb6cf0c3f8cc8e440a9e750878faf13430a1e20a.tar.bz2
More environment filtering fixes
- Make `brew pull` pass through Git environment variables - Whitelist all `TRAVIS_` variables.
Diffstat (limited to 'Library/Homebrew/test')
-rw-r--r--Library/Homebrew/test/spec_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/test/spec_helper.rb b/Library/Homebrew/test/spec_helper.rb
index d3da25dd8..6258cbd91 100644
--- a/Library/Homebrew/test/spec_helper.rb
+++ b/Library/Homebrew/test/spec_helper.rb
@@ -9,7 +9,7 @@ require "set"
if ENV["HOMEBREW_TESTS_COVERAGE"]
require "simplecov"
- if ENV["CODECOV_TOKEN"] || ENV["HOMEBREW_TRAVIS"]
+ if ENV["CODECOV_TOKEN"] || ENV["TRAVIS"]
require "codecov"
SimpleCov.formatter = SimpleCov::Formatter::Codecov
end