summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorBundlerbot <bot@bundler.io>2019-09-17 07:09:14 +0000
committerDavid Rodríguez <deivid.rodriguez@riseup.net>2019-11-07 16:41:28 +0100
commitc86b21c24424eaa26c3fc073834594c1f3d31cc3 (patch)
treed1c5193eb1128b5941b270c06fdfc2e0d4931059 /Rakefile
parentb0dcf5f7b2a23372128ec0caf1ae888cb8630749 (diff)
downloadbundler-c86b21c24424eaa26c3fc073834594c1f3d31cc3.tar.gz
Merge #7359
7359: Spec simplifications r=indirect a=deivid-rodriguez ### What was the end-user problem that led to this PR? The problem was that while working on #7296 and investigating why CI was failing there, I ended up adding several simplifications that are not necessarily related to that PR. In order to make that PR more digestable, I extracted those simplifications and improvements to this separate PR. ### Why did you choose this fix out of the possible options? I chose this fix because it makes our dev and test environment better and simpler with some little tweaks. Co-authored-by: David Rodríguez <deivid.rodriguez@riseup.net> (cherry picked from commit 892b18be786ab891b2602f2126d9b033f1f591b1)
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index ef673ba38a..03455044fe 100644
--- a/Rakefile
+++ b/Rakefile
@@ -21,7 +21,7 @@ end
desc "Run specs"
task :spec do
- sh("bin/rspec")
+ sh("bin/rspec --format progress")
end
namespace :spec do