# File lib/coveralls/configuration.rb, line 82
    def self.set_service_params_for_appveyor(config)
      config[:service_name]   = 'appveyor'
      config[:service_number] = ENV['APPVEYOR_BUILD_VERSION']
      config[:service_branch] = ENV['APPVEYOR_REPO_BRANCH']
      config[:commit_sha] = ENV['APPVEYOR_REPO_COMMIT']
      repo_name = ENV['APPVEYOR_REPO_NAME']
      config[:service_build_url]  = 'https://ci.appveyor.com/project/%s/build/%s' % [repo_name, config[:service_number]]
    end