diff options
author | James Turnbull <james@lovedthanlost.net> | 2009-03-26 23:33:30 +1100 |
---|---|---|
committer | James Turnbull <james@lovedthanlost.net> | 2009-03-26 23:33:30 +1100 |
commit | d1259372ea955c488efa37724fc74a55da28eefc (patch) | |
tree | b12596f1d992822990b6e3eb7de59496f91e0af2 | |
parent | c62c19370bfba881819c1a3d9da2f8e6fb52e5d9 (diff) | |
download | puppet-d1259372ea955c488efa37724fc74a55da28eefc.tar.gz puppet-d1259372ea955c488efa37724fc74a55da28eefc.tar.xz puppet-d1259372ea955c488efa37724fc74a55da28eefc.zip |
Added rake ci:all task
-rw-r--r-- | Rakefile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -163,6 +163,9 @@ namespace :ci do ENV['CI_REPORTS'] = 'results' end + desc "Run all CI tests" + task :all => [:unit, :spec] + desc "Run CI Unit tests" task :unit => [:prep, 'ci:setup:testunit'] do sh "cd test; rake test; exit 0" |