Welcome to mirror list, hosted at ThFree Co, Russian Federation.

config.rb « rspec_flaky « tooling - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ea18a601c118a6f2c319c5a80309e9956fbceeeb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# 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_path("rspec_flaky/suite-report.json")
    end

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

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

    def self.rails_path(path)
      return path unless defined?(Rails)

      Rails.root.join(path)
    end
  end
end