@@ -372,7 +372,7 @@ definitions or calls.
372372
373373.. option :: --untyped-calls-exclude
374374
375- This flag allows to selectively disable :option: `--disallow-untyped-calls `
375+ This flag allows one to selectively disable :option: `--disallow-untyped-calls `
376376 for functions and methods defined in specific packages, modules, or classes.
377377 Note that each exclude entry acts as a prefix. For example (assuming there
378378 are no type annotations for ``third_party_lib `` available):
@@ -562,7 +562,7 @@ potentially problematic or redundant in some way.
562562
563563.. option :: --deprecated-calls-exclude
564564
565- This flag allows to selectively disable :ref: `deprecated<code-deprecated> ` warnings
565+ This flag allows one to selectively disable :ref: `deprecated<code-deprecated> ` warnings
566566 for functions and methods defined in specific packages, modules, or classes.
567567 Note that each exclude entry acts as a prefix. For example (assuming ``foo.A.func `` is deprecated):
568568
@@ -1255,12 +1255,18 @@ Miscellaneous
12551255 stub packages were found, they are installed and then another run
12561256 is performed.
12571257
1258- .. option :: --junit-xml JUNIT_XML
1258+ .. option :: --junit-xml JUNIT_XML_OUTPUT_FILE
12591259
12601260 Causes mypy to generate a JUnit XML test result document with
12611261 type checking results. This can make it easier to integrate mypy
12621262 with continuous integration (CI) tools.
12631263
1264+ .. option :: --junit-format {global ,per_file}
1265+
1266+ If --junit-xml is set, specifies format.
1267+ global (default): single test with all errors;
1268+ per_file: one test entry per file with failures.
1269+
12641270.. option :: --find-occurrences CLASS.MEMBER
12651271
12661272 This flag will make mypy print out all usages of a class member
0 commit comments