c8755543f0
Enables frozen string for the following files: * lib/generators/**/*.rb * lib/gitaly/**/*.rb * lib/google_api/**/*.rb * lib/haml_lint/**/*.rb * lib/json_web_token/**/*.rb * lib/mattermost/**/*.rb * lib/microsoft_teams/**/*.rb * lib/object_storage/**/*.rb * lib/omni_auth/**/*.rb * lib/peek/**/*.rb * lib/rouge/**/*.rb * lib/rspec_flaky/**/*.rb * lib/system_check/**/*.rb Partially addresses #47424.
21 lines
595 B
Ruby
21 lines
595 B
Ruby
# 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
|
|
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
|