# File lib/travis/tools/formatter.rb, line 41
      def job_config(config)
        output = []
        config.each_pair do |key, value|
          output << "#{key}: #{value}" if CONFIG_KEYS.include? key
        end
        output.join(", ")
      end