summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Robinson <matt@puppetlabs.com>2011-02-14 11:36:23 -0800
committerMatt Robinson <matt@puppetlabs.com>2011-02-14 11:36:23 -0800
commit90f53f43e3bd263b37db673c08ba13c1b48b3ca6 (patch)
tree563674c935aedcc807b407b67ba43903f29c4f24
parente1b7db490212b1bdf281cfbb3fa5b7e467995753 (diff)
parentb25d9e42808112c6a0a3f5c6bbe7e8a05b02a6d2 (diff)
downloadpuppet-90f53f43e3bd263b37db673c08ba13c1b48b3ca6.tar.gz
puppet-90f53f43e3bd263b37db673c08ba13c1b48b3ca6.tar.xz
puppet-90f53f43e3bd263b37db673c08ba13c1b48b3ca6.zip
Merge branch 'ticket/2.6.next/rspec_returns_1_when_failures' into 2.6.next
* ticket/2.6.next/rspec_returns_1_when_failures: maint: make rspec exit with status 1 when there are failures
-rw-r--r--Rakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index 38cfec6ce..6cc53fe18 100644
--- a/Rakefile
+++ b/Rakefile
@@ -44,7 +44,7 @@ task :puppetpackages => [:create_gem, :package]
RSpec::Core::RakeTask.new do |t|
t.pattern ='spec/{unit,integration}/**/*.rb'
- t.fail_on_error = false
+ t.fail_on_error = true
end
desc "Run the unit tests"