Sha256: 70b67cd60444885d0cd7b94ce8e6f203f08c63d6060cfa5159d715a378e62237
Contents?: true
Size: 1.71 KB
Versions: 15
Compression:
Stored size: 1.71 KB
Contents
module Xcov class ErrorHandler class << self # @param [String] The output of the errored build # This method should raise an exception in any case, as the return code indicated a failed build def handle_error(output) # The order of the handling below is import case output when /US\-ASCII/ print "Your shell environment is not correctly configured" print "Instead of UTF-8 your shell uses US-ASCII" print "Please add the following to your '~/.bashrc':" print "" print " export LANG=en_US.UTF-8" print " export LANGUAGE=en_US.UTF-8" print " export LC_ALL=en_US.UTF-8" print "" print "You'll have to restart your shell session after updating the file." print "If you are using zshell or another shell, make sure to edit the correct bash file." print "For more information visit this stackoverflow answer:" print "https://stackoverflow.com/a/17031697/445598" when /CoverageNotFound/ print "Unable to find any .xccoverage file." print "Make sure you have enabled 'Gather code coverage' setting on your scheme settings." print "Alternatively you can provide the full path to your .xccoverage file." when /Executed/ # this is *really* important: # we don't want to raise an exception here # as we handle this in runner.rb at a later point # after parsing the actual test results return end raise "Error processing coverage file - see the log above".red end private def print(text) UI.message text.red end end end end
Version data entries
15 entries across 15 versions & 1 rubygems