2021-02-23 04:10:45 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module RspecFlaky
|
|
|
|
class Config
|
|
|
|
def self.generate_report?
|
|
|
|
!!(ENV['FLAKY_RSPEC_GENERATE_REPORT'] =~ /1|true/)
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.suite_flaky_examples_report_path
|
2022-01-25 13:11:55 -05:00
|
|
|
ENV['FLAKY_RSPEC_SUITE_REPORT_PATH'] || rails_path("rspec/flaky/suite-report.json")
|
2021-02-23 04:10:45 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.flaky_examples_report_path
|
2022-01-25 13:11:55 -05:00
|
|
|
ENV['FLAKY_RSPEC_REPORT_PATH'] || rails_path("rspec/flaky/report.json")
|
2021-02-23 04:10:45 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.new_flaky_examples_report_path
|
2022-01-25 13:11:55 -05:00
|
|
|
ENV['NEW_FLAKY_RSPEC_REPORT_PATH'] || rails_path("rspec/flaky/new-report.json")
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.skipped_flaky_tests_report_path
|
|
|
|
ENV['SKIPPED_FLAKY_TESTS_REPORT_PATH'] || rails_path("rspec/flaky/skipped_flaky_tests_report.txt")
|
2021-02-23 04:10:45 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.rails_path(path)
|
|
|
|
return path unless defined?(Rails)
|
|
|
|
|
|
|
|
Rails.root.join(path)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|