2012-01-09 7 views
5

Non ho alcun problema in esecuzione il file RSpec utilizzando:Come far funzionare l'output JunitFormatter per Rspec usando Rake?

rspec -f JUnitFormatter -o junit.xml spec_test.rb 

Tuttavia ogni volta che provo rastrello per eseguire il file spec, ottengo il seguente errore

/formatters/junit_formatter.rb:28:in `require': no such file to load --  rspec/core/formatters/base_formatter (LoadError) 
from ./formatters/junit_formatter.rb:28 
from /usr/lib/ruby/1.8/spec/runner/option_parser.rb:151:in `require' 
from /usr/lib/ruby/1.8/spec/runner/option_parser.rb:151:in `invoke_requires' 
from /usr/lib/ruby/1.8/spec/runner/option_parser.rb:150:in `each' 
from /usr/lib/ruby/1.8/spec/runner/option_parser.rb:150:in `invoke_requires' 
from /usr/lib/ruby/1.8/spec/runner/option_parser.rb:105:in `initialize' 
from /usr/lib/ruby/1.8/optparse.rb:1267:in `call' 
from /usr/lib/ruby/1.8/optparse.rb:1267:in `parse_in_order' 
from /usr/lib/ruby/1.8/optparse.rb:1254:in `catch' 
from /usr/lib/ruby/1.8/optparse.rb:1254:in `parse_in_order' 
from /usr/lib/ruby/1.8/optparse.rb:1248:in `order!' 
from /usr/lib/ruby/1.8/spec/runner/option_parser.rb:134:in `order!' 
from /usr/lib/ruby/1.8/spec/runner.rb:51:in `options' 
from /usr/lib/ruby/1.8/spec/runner/command_line.rb:6:in `run' 
from /usr/bin/spec:3 

Il mio file Rake:

require 'rubygems' 
require 'spec/rake/spectask' 

Spec::Rake::SpecTask.new(:spec) do |t| 
    t.spec_files = FileList['spec_*.rb'] 
    t.spec_opts = ['--options .rspec','--format JUnitFormatter' '--output junit.xml'] 
end 

risposta

6

È necessario richiedere il formatter junit prima di utilizzarlo. Aggiungere gioiello 'rspec_junit_formatter' al vostro Gemfile, bundle install, quindi eseguire Rspec come questo:

rspec -r rspec_junit_formatter --format RspecJunitFormatter -o junit.xml 

Source

Modifica a causa di commentare:

È possibile farlo funzionare con l'aggiunta di un rastrello personalizzato compito:

require 'rspec/core/rake_task' 
RSpec::Core::RakeTask.new(:spec) do |t| 
    t.fail_on_error = false 
    t.rspec_opts = "--no-drb -r rspec_junit_formatter --format RspecJunitFormatter -o junit.xml" 
end 
+0

Questo non parla alle preoccupazioni dell'OP su come farlo funzionare da rake – Eddie

Problemi correlati