mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
Merge pull request #5194 from tk0miya/4614_keep_going
Closes #4614: sphinx-build: Add :option:`--keep-going` option to show all warnings
This commit is contained in:
commit
d5a82c6245
1
CHANGES
1
CHANGES
@ -185,6 +185,7 @@ Features added
|
|||||||
* Add ``app.add_html_math_renderer()`` to register a math renderer for HTML
|
* Add ``app.add_html_math_renderer()`` to register a math renderer for HTML
|
||||||
* Apply :confval:`trim_doctest_flags` to all builders (cf. text, manpages)
|
* Apply :confval:`trim_doctest_flags` to all builders (cf. text, manpages)
|
||||||
* #5140: linkcheck: Add better Accept header to HTTP client
|
* #5140: linkcheck: Add better Accept header to HTTP client
|
||||||
|
* #4614: sphinx-build: Add ``--keep-going`` option to show all warnings
|
||||||
|
|
||||||
Bugs fixed
|
Bugs fixed
|
||||||
----------
|
----------
|
||||||
|
@ -229,6 +229,13 @@ Options
|
|||||||
Turn warnings into errors. This means that the build stops at the first
|
Turn warnings into errors. This means that the build stops at the first
|
||||||
warning and ``sphinx-build`` exits with exit status 1.
|
warning and ``sphinx-build`` exits with exit status 1.
|
||||||
|
|
||||||
|
.. option:: --keep-going
|
||||||
|
|
||||||
|
With -W option, keep going processing when getting warnings to the end
|
||||||
|
of build, and ``sphinx-build`` exits with exit status 1.
|
||||||
|
|
||||||
|
.. versionadded:: 1.8
|
||||||
|
|
||||||
.. option:: -T
|
.. option:: -T
|
||||||
|
|
||||||
Display the full traceback when an unhandled exception occurs. Otherwise,
|
Display the full traceback when an unhandled exception occurs. Otherwise,
|
||||||
|
@ -129,8 +129,8 @@ class Sphinx(object):
|
|||||||
def __init__(self, srcdir, confdir, outdir, doctreedir, buildername,
|
def __init__(self, srcdir, confdir, outdir, doctreedir, buildername,
|
||||||
confoverrides=None, status=sys.stdout, warning=sys.stderr,
|
confoverrides=None, status=sys.stdout, warning=sys.stderr,
|
||||||
freshenv=False, warningiserror=False, tags=None, verbosity=0,
|
freshenv=False, warningiserror=False, tags=None, verbosity=0,
|
||||||
parallel=0):
|
parallel=0, keep_going=False):
|
||||||
# type: (unicode, unicode, unicode, unicode, unicode, Dict, IO, IO, bool, bool, List[unicode], int, int) -> None # NOQA
|
# type: (unicode, unicode, unicode, unicode, unicode, Dict, IO, IO, bool, bool, List[unicode], int, int, bool) -> None # NOQA
|
||||||
self.phase = BuildPhase.INITIALIZATION
|
self.phase = BuildPhase.INITIALIZATION
|
||||||
self.verbosity = verbosity
|
self.verbosity = verbosity
|
||||||
self.extensions = {} # type: Dict[unicode, Extension]
|
self.extensions = {} # type: Dict[unicode, Extension]
|
||||||
@ -173,6 +173,10 @@ class Sphinx(object):
|
|||||||
else:
|
else:
|
||||||
self._warning = warning
|
self._warning = warning
|
||||||
self._warncount = 0
|
self._warncount = 0
|
||||||
|
self.keep_going = warningiserror and keep_going
|
||||||
|
if self.keep_going:
|
||||||
|
self.warningiserror = False
|
||||||
|
else:
|
||||||
self.warningiserror = warningiserror
|
self.warningiserror = warningiserror
|
||||||
logging.setup(self, self._status, self._warning)
|
logging.setup(self, self._status, self._warning)
|
||||||
|
|
||||||
@ -335,6 +339,9 @@ class Sphinx(object):
|
|||||||
self.builder.compile_update_catalogs()
|
self.builder.compile_update_catalogs()
|
||||||
self.builder.build_update()
|
self.builder.build_update()
|
||||||
|
|
||||||
|
if self._warncount and self.keep_going:
|
||||||
|
self.statuscode = 1
|
||||||
|
|
||||||
status = (self.statuscode == 0 and
|
status = (self.statuscode == 0 and
|
||||||
__('succeeded') or __('finished with problems'))
|
__('succeeded') or __('finished with problems'))
|
||||||
if self._warncount:
|
if self._warncount:
|
||||||
|
@ -189,6 +189,8 @@ files can be built by specifying individual filenames.
|
|||||||
help=__('write warnings (and errors) to given file'))
|
help=__('write warnings (and errors) to given file'))
|
||||||
group.add_argument('-W', action='store_true', dest='warningiserror',
|
group.add_argument('-W', action='store_true', dest='warningiserror',
|
||||||
help=__('turn warnings into errors'))
|
help=__('turn warnings into errors'))
|
||||||
|
group.add_argument('--keep-going', action='store_true', dest='keep_going',
|
||||||
|
help=__("With -W, Keep going when getting warnings"))
|
||||||
group.add_argument('-T', action='store_true', dest='traceback',
|
group.add_argument('-T', action='store_true', dest='traceback',
|
||||||
help=__('show full traceback on exception'))
|
help=__('show full traceback on exception'))
|
||||||
group.add_argument('-P', action='store_true', dest='pdb',
|
group.add_argument('-P', action='store_true', dest='pdb',
|
||||||
@ -298,7 +300,7 @@ def build_main(argv=sys.argv[1:]): # type: ignore
|
|||||||
app = Sphinx(args.sourcedir, args.confdir, args.outputdir,
|
app = Sphinx(args.sourcedir, args.confdir, args.outputdir,
|
||||||
args.doctreedir, args.builder, confoverrides, status,
|
args.doctreedir, args.builder, confoverrides, status,
|
||||||
warning, args.freshenv, args.warningiserror,
|
warning, args.freshenv, args.warningiserror,
|
||||||
args.tags, args.verbosity, args.jobs)
|
args.tags, args.verbosity, args.jobs, args.keep_going)
|
||||||
app.build(args.force_all, filenames)
|
app.build(args.force_all, filenames)
|
||||||
return app.statuscode
|
return app.statuscode
|
||||||
except (Exception, KeyboardInterrupt) as exc:
|
except (Exception, KeyboardInterrupt) as exc:
|
||||||
|
Loading…
Reference in New Issue
Block a user