diff options
author | Matt Robinson <matt@puppetlabs.com> | 2011-02-14 11:36:23 -0800 |
---|---|---|
committer | Matt Robinson <matt@puppetlabs.com> | 2011-02-14 11:36:23 -0800 |
commit | 90f53f43e3bd263b37db673c08ba13c1b48b3ca6 (patch) | |
tree | 563674c935aedcc807b407b67ba43903f29c4f24 | |
parent | e1b7db490212b1bdf281cfbb3fa5b7e467995753 (diff) | |
parent | b25d9e42808112c6a0a3f5c6bbe7e8a05b02a6d2 (diff) | |
download | puppet-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-- | Rakefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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" |