Sha256: 3ed472d85a8f0e0e17822104aff9171b189b8a6a78c6304a27e696c311e48ca6
Contents?: true
Size: 1.43 KB
Versions: 3
Compression:
Stored size: 1.43 KB
Contents
module Knapsack module Config class Env class << self def report_path ENV['KNAPSACK_REPORT_PATH'] end def ci_node_total ENV['CI_NODE_TOTAL'] || ENV['CIRCLE_NODE_TOTAL'] || ENV['SEMAPHORE_THREAD_COUNT'] || ENV['BUILDKITE_PARALLEL_JOB_COUNT'] || ENV['SNAP_WORKER_TOTAL'] || 1 end def ci_node_index gitlab_ci_node_index || ENV['CI_NODE_INDEX'] || ENV['CIRCLE_NODE_INDEX'] || semaphore_current_thread || ENV['BUILDKITE_PARALLEL_JOB'] || snap_ci_worker_index || 0 end def test_file_pattern ENV['KNAPSACK_TEST_FILE_PATTERN'] end def test_dir ENV['KNAPSACK_TEST_DIR'] end def log_level { "debug" => Knapsack::Logger::DEBUG, "info" => Knapsack::Logger::INFO, "warn" => Knapsack::Logger::WARN, }[ENV['KNAPSACK_LOG_LEVEL']] || Knapsack::Logger::INFO end private def index_starting_from_one(index) index.to_i - 1 if index end def semaphore_current_thread index_starting_from_one(ENV['SEMAPHORE_CURRENT_THREAD']) end def snap_ci_worker_index index_starting_from_one(ENV['SNAP_WORKER_INDEX']) end def gitlab_ci_node_index return unless ENV['GITLAB_CI'] index_starting_from_one(ENV['CI_NODE_INDEX']) end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
knapsack-1.17.2 | lib/knapsack/config/env.rb |
knapsack-1.17.1 | lib/knapsack/config/env.rb |
knapsack-1.17.0 | lib/knapsack/config/env.rb |