module SimpleCov::Configuration

def command_name(name=nil)

You can specify it manually with SimpleCov.command_name("test:units")
to the command line arguments the current test suite is running on.
The name of the command currently running. It is used for result merging and defaults
def command_name(name=nil)
  @name ||= (name.nil? ? ARGV.join(" ") : name)
end