Skip to content

Instantly share code, notes, and snippets.

@DaKaZ
Created July 29, 2014 16:24
Show Gist options
  • Save DaKaZ/2298e3f4b5011897bbbd to your computer and use it in GitHub Desktop.
Save DaKaZ/2298e3f4b5011897bbbd to your computer and use it in GitHub Desktop.
Zeus custom_plan.rb for simplecov and parallel_tests
require 'zeus/parallel_tests'
class CustomPlan < Zeus::ParallelTests::Rails
def test(argv = ARGV)
require 'simplecov'
SimpleCov.start 'rails'
super
end
end
Zeus.plan = CustomPlan.new
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment