summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2020-01-07 02:02:36 +0100
committerDavid Rodríguez <deivid.rodriguez@riseup.net>2020-01-07 02:02:36 +0100
commit28f39e0deed1ffdac7d1f99389848995fca3aa43 (patch)
tree674bb4cfce2d70183008270ba5b24af402873cb5 /Rakefile
parent0df849428348df13c3af94b427c388bc0689e368 (diff)
downloadbundler-28f39e0deed1ffdac7d1f99389848995fca3aa43.tar.gz
Use the same value to activate all test env variables
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Rakefile b/Rakefile
index 2fe080eb78..88304aafd4 100644
--- a/Rakefile
+++ b/Rakefile
@@ -57,7 +57,7 @@ namespace :spec do
task :record => %w[set_record realworld]
task :set_record do
- ENV["BUNDLER_SPEC_FORCE_RECORD"] = "TRUE"
+ ENV["BUNDLER_SPEC_FORCE_RECORD"] = "1"
end
end
@@ -77,7 +77,7 @@ namespace :spec do
rg = ENV["RGV"] || raise("RubyGems version is required on Travis!")
# disallow making network requests on CI
- ENV["BUNDLER_SPEC_PRE_RECORDED"] = "TRUE"
+ ENV["BUNDLER_SPEC_PRE_RECORDED"] = "1"
puts "\n\e[1;33m[Travis CI] Running bundler specs against RubyGems #{rg}\e[m\n\n"
specs = safe_task { Rake::Task["spec"].invoke }