2018-12-13 13:39:08 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
module RspecFlaky
|
|
|
|
class Config
|
|
|
|
def self.generate_report?
|
2018-10-15 14:42:47 +05:30
|
|
|
!!(ENV['FLAKY_RSPEC_GENERATE_REPORT'] =~ /1|true/)
|
2018-03-17 18:26:18 +05:30
|
|
|
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
|