aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test
diff options
context:
space:
mode:
authorMike McQuaid2017-11-13 10:01:54 +0000
committerMike McQuaid2017-11-13 10:01:54 +0000
commit5241d07474586f85f513357a989ecbb74ea69c30 (patch)
treea360ee81ce8eb3aa57b3a7c9e20541da95f069de /Library/Homebrew/test
parent441c212f2dd70f053ee21eac8398c5fe5dfd0551 (diff)
downloadbrew-5241d07474586f85f513357a989ecbb74ea69c30.tar.bz2
environment filtering: pass through TRAVIS vars.
We use these internally so let's map them to `HOMEBREW_` 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 08766ea37..c3652fc42 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["TRAVIS"]
+ if ENV["CODECOV_TOKEN"] || ENV["HOMEBREW_TRAVIS"]
require "codecov"
SimpleCov.formatter = SimpleCov::Formatter::Codecov
end