diff options
Diffstat (limited to 'lib/rspec_flaky/config.rb')
-rw-r--r-- | lib/rspec_flaky/config.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/rspec_flaky/config.rb b/lib/rspec_flaky/config.rb index 55c1d4747b4..c07ca65ee48 100644 --- a/lib/rspec_flaky/config.rb +++ b/lib/rspec_flaky/config.rb @@ -3,19 +3,19 @@ module RspecFlaky class Config def self.generate_report? - !!(ENV['FLAKY_RSPEC_GENERATE_REPORT'] =~ /1|true/) + !!(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") + 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") + 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") + ENV["NEW_FLAKY_RSPEC_REPORT_PATH"] || Rails.root.join("rspec_flaky/new-report.json") end end end |