throw an exception when sphinxext cannot find the config file

Using the app error function is not enough to break the build at the
point where the error occurs. Throw an exception with an error message
explaining the problem.

Related-Bug: 1707246
Change-Id: Ie836b7a6f3ea7cba1737913b944f36c77f14cfd0
Signed-off-by: Doug Hellmann <doug@doughellmann.com>
This commit is contained in:
Doug Hellmann 2017-07-28 13:37:12 -04:00 committed by Lance Bragstad
parent 2b99c39c30
commit 4b2342a9fe

View File

@ -124,7 +124,9 @@ class ShowPolicyDirective(rst.Directive):
config_path = c
break
else:
self.error('could not find config file in: %s' % str(candidates))
raise ValueError(
'could not find config file in: %s' % str(candidates)
)
self.info('loading config file %s' % config_path)