Home | History | Annotate | Download | only in python2.7

Lines Matching full:report

46   # make a report, placing output in /tmp
95 See also `--coverdir', `--file', `--no-report' below.
101 -r, --report Generate a report from a counts file; do not execute
108 -R, --no-report Do not generate the coverage report files.
110 -C, --coverdir=<dir> Directory where the report files. The coverage
111 report for <package>.<module> is written to file
116 (Can only be used with --count or --report.)
667 "report", "no-report", "summary",
681 report = 0
722 if opt == "-r" or opt == "--report":
723 report = 1
726 if opt == "-R" or opt == "--no-report":
771 if not (count or trace or report or listfuncs or countcallers):
772 _err_exit("must specify one of --trace, --count, --report, "
775 if report and no_report:
776 _err_exit("cannot specify both --report and --no-report")
778 if report and not counts_file:
779 _err_exit("--report requires a --file")
785 if report: