Skip to content
This repository was archived by the owner on Nov 30, 2024. It is now read-only.

Fix rcov integration on windows (or platoform where PATH_SEPARATOR != : more generally) #421

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/rspec/core/rake_task.rb
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ def spec_command
cmd_parts << "bundle exec" if gemfile? unless skip_bundler
cmd_parts << runner
if rcov
cmd_parts << ["-Ispec#{File::PATH_SEPARATOR}lib", rcov_opts]
cmd_parts << ["-Ispec:lib", rcov_opts]
else
cmd_parts << rspec_opts
end
Expand Down