mirror of
https://github.com/certbot/certbot.git
synced 2026-05-28 04:34:11 -04:00
exclude edge case from coverage
This commit is contained in:
parent
41edb7660e
commit
e2075377c5
1 changed files with 2 additions and 1 deletions
|
|
@ -155,7 +155,8 @@ class CentOSConfigurator(BaseCentOSConfigurator):
|
|||
use options.bin (i.e. httpd)
|
||||
"""
|
||||
if not self.options.bin:
|
||||
raise ValueError("OS option apache_bin must be set for CentOS")
|
||||
raise ValueError("OS option apache_bin must be set for CentOS") # pragma: no cover
|
||||
|
||||
self.options.get_modules_cmd[0] = self.options.bin
|
||||
self.options.get_includes_cmd[0] = self.options.bin
|
||||
self.options.get_defines_cmd[0] = self.options.bin
|
||||
|
|
|
|||
Loading…
Reference in a new issue