summaryrefslogtreecommitdiff
path: root/lib/rspec_flaky/config.rb
blob: a17ae55910e3a6b8254e86e17e309baee143fc1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
require 'json'

module RspecFlaky
  class Config
    def self.generate_report?
      ENV['FLAKY_RSPEC_GENERATE_REPORT'] == 'true'
    end

    def self.suite_flaky_examples_report_path
      ENV['SUITE_FLAKY_RSPEC_REPORT_PATH'] || Rails.root.join("rspec_flaky/suite-report.json")
    end

    def self.flaky_examples_report_path
      ENV['FLAKY_RSPEC_REPORT_PATH'] || Rails.root.join("rspec_flaky/report.json")
    end

    def self.new_flaky_examples_report_path
      ENV['NEW_FLAKY_RSPEC_REPORT_PATH'] || Rails.root.join("rspec_flaky/new-report.json")
    end
  end
end