# File lib/coveralls/simplecov.rb, line 54
      def format(result)

        unless Coveralls.should_run?
          if Coveralls.noisy?
            display_result result
          end
          return
        end

        # Post to Coveralls.
        API.post_json "jobs", 
          :source_files => get_source_files(result),
          :test_framework => result.command_name.downcase,
          :run_at => result.created_at

        Coveralls::Output.puts output_message result

        true

      rescue Exception => e
        display_error e
      end