summaryrefslogtreecommitdiffhomepage
path: root/codeclimate/export-coverage.rb
blob: a7a2c1206baaf8a10181e7083a401353bf27576e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require_relative 'env'


class ReportCoverage
  class <<self
    def format
      puts `./codeclimate/test-reporter-latest-linux-amd64 format-coverage -t simplecov`
    end

    def upload
      puts `./codeclimate/test-reporter-latest-linux-amd64 upload-coverage --id #{ENV['CC_TEST_REPORTER_ID']}`
    end
  end
end