@@ -12,18 +12,20 @@ flag (or its long form ``--help``)::
1212 [-s] [--almost-silent] [--disallow-untyped-calls]
1313 [--disallow-untyped-defs] [--check-untyped-defs]
1414 [--disallow-subclassing-any] [--warn-incomplete-stub]
15- [--warn-redundant-casts] [--warn-unused-ignores]
16- [--hide-error-context] [--fast-parser] [-i] [--cache-dir DIR]
17- [--strict-optional]
18- [--strict-optional-whitelist [GLOB [GLOB ...]]] [--pdb]
19- [--show-traceback] [--stats] [--inferstats]
20- [--custom-typing MODULE] [--custom-typeshed-dir DIR]
21- [--scripts-are-modules] [--config-file CONFIG_FILE]
22- [--show-column-numbers] [--html-report DIR]
23- [--linecount-report DIR] [--linecoverage-report DIR]
24- [--memory-xml-report DIR] [--old-html-report DIR]
25- [--txt-report DIR] [--xml-report DIR] [--xslt-html-report DIR]
26- [--xslt-txt-report DIR] [-m MODULE] [-c PROGRAM_TEXT] [-p PACKAGE]
15+ [--warn-redundant-casts] [--warn-no-return]
16+ [--warn-unused-ignores] [--hide-error-context] [--fast-parser]
17+ [-i] [--cache-dir DIR] [--strict-optional]
18+ [--strict-optional-whitelist [GLOB [GLOB ...]]]
19+ [--junit-xml JUNIT_XML] [--pdb] [--show-traceback] [--stats]
20+ [--inferstats] [--custom-typing MODULE]
21+ [--custom-typeshed-dir DIR] [--scripts-are-modules]
22+ [--config-file CONFIG_FILE] [--show-column-numbers]
23+ [--find-occurrences CLASS.MEMBER] [--cobertura-xml-report DIR]
24+ [--html-report DIR] [--linecount-report DIR]
25+ [--linecoverage-report DIR] [--memory-xml-report DIR]
26+ [--old-html-report DIR] [--txt-report DIR] [--xml-report DIR]
27+ [--xslt-html-report DIR] [--xslt-txt-report DIR] [-m MODULE]
28+ [-c PROGRAM_TEXT] [-p PACKAGE]
2729 [files [files ...]]
2830
2931 (etc., too long to show everything here)
@@ -339,7 +341,18 @@ Here are some more useful flags:
339341 in the current directory. Settings override mypy's built-in defaults
340342 and command line flags can override settings. See :ref: `config-file `
341343 for the syntax of configuration files.
342-
344+
345+ - ``--junit-xml JUNIT_XML `` will make mypy generate a JUnit XML test
346+ result document with type checking results. This can make it easier
347+ to integrate mypy with continuous integration (CI) tools.
348+
349+ - ``--find-occurrences CLASS.MEMBER `` will make mypy print out all
350+ usages of a class member based on static type information. This
351+ feature is experimental.
352+
353+ - ``--cobertura-xml-report DIR `` causes mypy to generate a Cobertura
354+ XML type checking coverage report.
355+
343356For the remaining flags you can read the full ``mypy -h `` output.
344357
345358.. note ::
0 commit comments