mirror of
https://github.com/ms-ati/docile
synced 2023-03-27 23:21:52 -04:00
Fix Rubocop Style/FetchEnvVar
This commit is contained in:
parent
e91f2a073c
commit
75b66bec6a
1 changed files with 1 additions and 1 deletions
2
Gemfile
2
Gemfile
|
@ -10,7 +10,7 @@ group :test do
|
|||
gem "simplecov", require: false
|
||||
|
||||
# CI-only test dependencies go here
|
||||
if ENV["CI"] == "true"
|
||||
if ENV.fetch("CI", nil) == "true"
|
||||
gem "simplecov-cobertura", require: false, group: "test"
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue