summaryrefslogtreecommitdiffstats
path: root/Rakefile
diff options
context:
space:
mode:
authorJames Turnbull <james@lovedthanlost.net>2008-11-26 20:29:33 +1100
committerJames Turnbull <james@lovedthanlost.net>2008-11-26 20:29:33 +1100
commit31ec3e64f3acaec36f3bddc6078f6ddd0d7efbf7 (patch)
tree6d31eba160e4426afb7c51e40f5c8d0064871cb4 /Rakefile
parent3421954444f4c06d6e7b80430f89fccf56343fe2 (diff)
downloadpuppet-31ec3e64f3acaec36f3bddc6078f6ddd0d7efbf7.tar.gz
puppet-31ec3e64f3acaec36f3bddc6078f6ddd0d7efbf7.tar.xz
puppet-31ec3e64f3acaec36f3bddc6078f6ddd0d7efbf7.zip
Adjusted CI tasks exit codes
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Rakefile b/Rakefile
index f6fee2cb8..f9e349afc 100644
--- a/Rakefile
+++ b/Rakefile
@@ -163,12 +163,12 @@ namespace :ci do
desc "Run CI Unit tests"
task :unit => [:prep, 'ci:setup:testunit'] do
- sh "cd test; rake test"
+ sh "cd test; rake test; exit 0"
end
desc "Run CI RSpec tests"
task :spec => [:prep, 'ci:setup:rspec'] do
- sh "cd spec; rake all"
+ sh "cd spec; rake all; exit 0"
end
end