You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildr.apache.org by do...@apache.org on 2012/10/05 23:51:44 UTC

svn commit: r1394832 - /buildr/trunk/rakelib/rspec.rake

Author: donaldp
Date: Fri Oct  5 21:51:44 2012
New Revision: 1394832

URL: http://svn.apache.org/viewvc?rev=1394832&view=rev
Log:
Run clobber prior to running the test to avoid the scenario where left over artifacts can corrup a ci run

Modified:
    buildr/trunk/rakelib/rspec.rake

Modified: buildr/trunk/rakelib/rspec.rake
URL: http://svn.apache.org/viewvc/buildr/trunk/rakelib/rspec.rake?rev=1394832&r1=1394831&r2=1394832&view=diff
==============================================================================
--- buildr/trunk/rakelib/rspec.rake (original)
+++ buildr/trunk/rakelib/rspec.rake Fri Oct  5 21:51:44 2012
@@ -63,7 +63,7 @@ begin
   end
 
   desc 'Run all specs with CI reporter'
-  task :ci=>[:load_ci_reporter, :spec]
+  task :ci=>[:clobber, :load_ci_reporter, :spec]
 
   def rvm_run_in(version, command)
     if !(Config::CONFIG['host_os'] =~ /mswin|win32|dos/i)