Sha256: e82472a8135c5704300f47207fd9d9670c45582d73ecc68367f457193781efbf
Contents?: true
Size: 963 Bytes
Versions: 3
Compression:
Stored size: 963 Bytes
Contents
# frozen_string_literal: true module Coverband class Background @semaphore = Mutex.new @thread = nil def self.stop return unless @thread @semaphore.synchronize do if @thread @thread.exit @thread = nil end end end def self.running? @thread && @thread.alive? end def self.start return if running? logger = Coverband.configuration.logger @semaphore.synchronize do return if running? logger&.debug('Coverband: Starting background reporting') sleep_seconds = Coverband.configuration.background_reporting_sleep_seconds @thread = Thread.new do loop do Coverband.report_coverage(true) logger&.debug("Coverband: Reported coverage via thread. Sleeping #{sleep_seconds}s") if Coverband.configuration.verbose sleep(sleep_seconds) end end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
coverband-4.2.0 | lib/coverband/integrations/background.rb |
coverband-4.2.0.rc3 | lib/coverband/integrations/background.rb |
coverband-4.2.0.rc2 | lib/coverband/integrations/background.rb |