Skip to content

Commit e280640

Browse files
committed
Skip coverage gate for docker smoke specs
1 parent 0b7f914 commit e280640

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

spec/spec_helper.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
ENV['RACK_ENV'] = 'test'
55
ENV['HTML2RSS_SECRET_KEY'] = 'test-secret-key-for-specs'
66

7-
if ENV['CI'] || ENV['COVERAGE']
7+
if (ENV.fetch('CI', nil) || ENV.fetch('COVERAGE', nil)) && ENV['RUN_DOCKER_SPECS'] != 'true'
88
require 'simplecov'
99

1010
SimpleCov.start do

0 commit comments

Comments
 (0)