1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631
|
.. Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0
.. For details: https://github.com/nedbat/coveragepy/blob/master/NOTICE.txt
.. _config:
=======================
Configuration reference
=======================
.. highlight:: ini
Coverage.py options can be specified in a configuration file. This makes it
easier to re-run coverage.py with consistent settings, and also allows for
specification of options that are otherwise only available in the
:ref:`API <api>`.
Configuration files also make it easier to get coverage testing of spawned
sub-processes. See :ref:`subprocess` for more details.
The default name for configuration files is ``.coveragerc``, in the same
directory coverage.py is being run in. Most of the settings in the
configuration file are tied to your source code and how it should be measured,
so it should be stored with your source, and checked into source control,
rather than put in your home directory.
A different location for the configuration file can be specified with the
``--rcfile=FILE`` command line option or with the ``COVERAGE_RCFILE``
environment variable.
Coverage.py will read settings from other usual configuration files if no other
configuration file is used. It will automatically read from "setup.cfg" or
"tox.ini" if they exist. In this case, the section names have "coverage:"
prefixed, so the ``[run]`` options described below will be found in the
``[coverage:run]`` section of the file. If coverage.py is installed with the
``toml`` extra (``pip install coverage[toml]``), it will automatically read
from "pyproject.toml". Configuration must be within the ``[tool.coverage]``
section, for example, ``[tool.coverage.run]``.
Syntax
------
A coverage.py configuration file is in classic .ini file format: sections are
introduced by a ``[section]`` header, and contain ``name = value`` entries.
Lines beginning with ``#`` or ``;`` are ignored as comments.
Strings don't need quotes. Multi-valued strings can be created by indenting
values on multiple lines.
Boolean values can be specified as ``on``, ``off``, ``true``, ``false``, ``1``,
or ``0`` and are case-insensitive.
Environment variables can be substituted in by using dollar signs: ``$WORD``
or ``${WORD}`` will be replaced with the value of ``WORD`` in the environment.
A dollar sign can be inserted with ``$$``. Special forms can be used to
control what happens if the variable isn't defined in the environment:
- If you want to raise an error if an environment variable is undefined, use a
question mark suffix: ``${WORD?}``.
- If you want to provide a default for missing variables, use a dash with a
default value: ``${WORD-default value}``.
- Otherwise, missing environment variables will result in empty strings with no
error.
Many sections and settings correspond roughly to commands and options in
the :ref:`command-line interface <cmd>`.
Here's a sample configuration file::
# .coveragerc to control coverage.py
[run]
branch = True
[report]
# Regexes for lines to exclude from consideration
exclude_lines =
# Have to re-enable the standard pragma
pragma: no cover
# Don't complain about missing debug-only code:
def __repr__
if self\.debug
# Don't complain if tests don't hit defensive assertion code:
raise AssertionError
raise NotImplementedError
# Don't complain if non-runnable code isn't run:
if 0:
if __name__ == .__main__.:
# Don't complain about abstract methods, they aren't run:
@(abc\.)?abstractmethod
ignore_errors = True
[html]
directory = coverage_html_report
.. _config_run:
[run]
-----
These settings are generally used when running product code, though some apply
to more than one command.
.. _config_run_branch:
[run] branch
............
(boolean, default False) Whether to measure :ref:`branch coverage <branch>` in
addition to statement coverage.
.. _config_run_command_line:
[run] command_line
..................
(string) The command-line to run your program. This will be used if you run
``coverage run`` with no further arguments. Coverage.py options cannot be
specified here, other than ``-m`` to indicate the module to run.
.. versionadded:: 5.0
.. _config_run_concurrency:
[run] concurrency
.................
(multi-string, default "thread") The concurrency libraries in use by the
product code. If your program uses `multiprocessing`_, `gevent`_, `greenlet`_,
or `eventlet`_, you must name that library in this option, or coverage.py will
produce very wrong results.
.. _multiprocessing: https://docs.python.org/3/library/multiprocessing.html
.. _greenlet: https://greenlet.readthedocs.io/
.. _gevent: http://www.gevent.org/
.. _eventlet: http://eventlet.net/
See :ref:`subprocess` for details of multi-process measurement.
Before version 4.2, this option only accepted a single string.
.. versionadded:: 4.0
.. _config_run_context:
[run] context
.............
(string) The static context to record for this coverage run. See
:ref:`contexts` for more information
.. versionadded:: 5.0
.. _config_run_cover_pylib:
[run] cover_pylib
.................
(boolean, default False) Whether to measure the Python standard library.
.. _config_run_data_file:
[run] data_file
...............
(string, default ".coverage") The name of the data file to use for storing or
reporting coverage. This value can include a path to another directory.
.. _config_run_disable_warnings:
[run] disable_warnings
......................
(multi-string) A list of warnings to disable. Warnings that can be disabled
include a short string at the end, the name of the warning. See
:ref:`cmd_warnings` for specific warnings.
.. _config_run_debug:
[run] debug
...........
(multi-string) A list of debug options. See :ref:`the run --debug option
<cmd_run_debug>` for details.
.. _config_run_dynamic_context:
[run] dynamic_context
.....................
(string) The name of a strategy for setting the dynamic context during
execution. See :ref:`dynamic_contexts` for details.
.. _config_run_include:
[run] include
.............
(multi-string) A list of file name patterns, the files to include in
measurement or reporting. Ignored if ``source`` is set. See :ref:`source` for
details.
.. _config_run_note:
[run] note
..........
(string) This is now obsolete.
.. _config_run_omit:
[run] omit
..........
(multi-string) A list of file name patterns, the files to leave out of
measurement or reporting. See :ref:`source` for details.
.. _config_run_parallel:
[run] parallel
..............
(boolean, default False) Append the machine name, process id and random number
to the data file name to simplify collecting data from many processes. See
:ref:`cmd_combine` for more information.
.. _config_run_plugins:
[run] plugins
.............
(multi-string) A list of plugin package names. See :ref:`plugins` for more
information.
.. _config_run_relative_files:
[run] relative_files
....................
(*experimental*, boolean, default False) store relative file paths in the data
file. This makes it easier to measure code in one (or multiple) environments,
and then report in another. See :ref:`cmd_combine` for details.
Note that setting ``source`` has to be done in the configuration file rather
than the command line for this option to work, since the reporting commands
need to know the source origin.
.. versionadded:: 5.0
.. _config_run_sigterm:
[run] sigterm
.............
(boolean, default False) if true, register a SIGTERM signal handler to capture
data when the process ends due to a SIGTERM signal. This includes
:meth:`Process.terminate <python:multiprocessing.Process.terminate>`, and other
ways to terminate a process. This can help when collecting data in usual
situations, but can also introduce problems (see `issue 1310`_).
Only on Linux and Mac.
.. _issue 1310: https://github.com/nedbat/coveragepy/issues/1310
.. versionadded:: 6.4 (in 6.3 this was always enabled)
.. _config_run_source:
[run] source
............
(multi-string) A list of packages or directories, the source to measure during
execution. If set, ``include`` is ignored. See :ref:`source` for details.
.. _config_run_source_pkgs:
[run] source_pkgs
.................
(multi-string) A list of packages, the source to measure during execution.
Operates the same as ``source``, but only names packages, for resolving
ambiguities between packages and directories.
.. versionadded:: 5.3
.. _config_run_timid:
[run] timid
...........
(boolean, default False) Use a simpler but slower trace method. This uses
PyTracer instead of CTracer, and is only needed in very unusual circumstances.
Try this if you get seemingly impossible results.
.. _config_paths:
[paths]
-------
The entries in this section are lists of file paths that should be considered
equivalent when combining data from different machines::
[paths]
source =
src/
/jenkins/build/*/src
c:\myproj\src
The names of the entries ("source" in this example) are ignored, you may choose
any name that you like. The value is a list of strings. When combining data
with the ``combine`` command, two file paths will be combined if they start
with paths from the same list.
The first value must be an actual file path on the machine where the reporting
will happen, so that source code can be found. The other values can be file
patterns to match against the paths of collected data, or they can be absolute
or relative file paths on the current machine.
In this example, data collected for "/jenkins/build/1234/src/module.py" will be
combined with data for "c:\\myproj\\src\\module.py", and will be reported
against the source file found at "src/module.py".
If you specify more than one list of paths, they will be considered in order.
The first list that has a match will be used.
The ``--debug=pathmap`` option can be used to log details of the re-mapping of
paths. See :ref:`the --debug option <cmd_run_debug>`.
See :ref:`cmd_combine` for more information.
.. _config_report:
[report]
--------
Settings common to many kinds of reporting.
.. _config_report_exclude_lines:
[report] exclude_lines
......................
(multi-string) A list of regular expressions. Any line of your source code
containing a match for one of these regexes is excluded from being reported as
missing. More details are in :ref:`excluding`. If you use this option, you
are replacing all the exclude regexes, so you'll need to also supply the
"pragma: no cover" regex if you still want to use it.
You can exclude lines introducing blocks, and the entire block is excluded. If
you exclude a ``def`` line or decorator line, the entire function is excluded.
Be careful when writing this setting: the values are regular expressions that
only have to match a portion of the line. For example, if you write ``...``,
you'll exclude any line with three or more of any character. If you write
``pass``, you'll also exclude the line ``my_pass="foo"``, and so on.
.. _config_report_fail_under:
[report] fail_under
...................
(float) A target coverage percentage. If the total coverage measurement is
under this value, then exit with a status code of 2. If you specify a
non-integral value, you must also set ``[report] precision`` properly to make
use of the decimal places. A setting of 100 will fail any value under 100,
regardless of the number of decimal places of precision.
.. _config_report_ignore_errors:
[report] ignore_errors
......................
(boolean, default False) Ignore source code that can't be found, emitting a
warning instead of an exception.
.. _config_report_include:
[report] include
................
(multi-string) A list of file name patterns, the files to include in reporting.
See :ref:`source` for details.
.. _config_report_omit:
[report] omit
.............
(multi-string) A list of file name patterns, the files to leave out of
reporting. See :ref:`source` for details.
.. _config_report_partial_branches:
[report] partial_branches
.........................
(multi-string) A list of regular expressions. Any line of code that matches
one of these regexes is excused from being reported as a partial branch. More
details are in :ref:`branch`. If you use this option, you are replacing all
the partial branch regexes so you'll need to also supply the "pragma: no
branch" regex if you still want to use it.
.. _config_report_precision:
[report] precision
..................
(integer) The number of digits after the decimal point to display for reported
coverage percentages. The default is 0, displaying for example "87%". A value
of 2 will display percentages like "87.32%". This setting also affects the
interpretation of the ``fail_under`` setting.
.. _config_report_show_missing:
[report] show_missing
.....................
(boolean, default False) When running a summary report, show missing lines.
See :ref:`cmd_report` for more information.
.. _config_report_skip_covered:
[report] skip_covered
.....................
(boolean, default False) Don't report files that are 100% covered. This helps
you focus on files that need attention.
.. _config_report_skip_empty:
[report] skip_empty
...................
(boolean, default False) Don't report files that have no executable code (such
as ``__init__.py`` files).
.. _config_report_sort:
[report] sort
.............
(string, default "Name") Sort the text report by the named column. Allowed
values are "Name", "Stmts", "Miss", "Branch", "BrPart", or "Cover". Prefix
with ``-`` for descending sort (for example, "-cover").
.. _config_html:
[html]
------
Settings particular to HTML reporting. The settings in the ``[report]``
section also apply to HTML output, where appropriate.
.. _config_html_directory:
[html] directory
................
(string, default "htmlcov") Where to write the HTML report files.
.. _config_html_extra_css:
[html] extra_css
................
(string) The path to a file of CSS to apply to the HTML report. The file will
be copied into the HTML output directory. Don't name it "style.css". This CSS
is in addition to the CSS normally used, though you can overwrite as many of
the rules as you like.
.. _config_html_show_context:
[html] show_contexts
....................
(boolean) Should the HTML report include an indication on each line of which
contexts executed the line. See :ref:`dynamic_contexts` for details.
.. _config_html_skip_covered:
[html] skip_covered
...................
(boolean, defaulted from ``[report] skip_covered``) Don't include files in the
report that are 100% covered files. See :ref:`cmd_report` for more information.
.. versionadded:: 5.4
.. _config_html_skip_empty:
[html] skip_empty
.................
(boolean, defaulted from ``[report] skip_empty``) Don't include empty files
(those that have 0 statements) in the report. See :ref:`cmd_report` for more
information.
.. versionadded:: 5.4
.. _config_html_title:
[html] title
............
(string, default "Coverage report") The title to use for the report.
Note this is text, not HTML.
.. _config_xml:
[xml]
-----
Settings particular to XML reporting. The settings in the ``[report]`` section
also apply to XML output, where appropriate.
.. _config_xml_output:
[xml] output
............
(string, default "coverage.xml") Where to write the XML report.
.. _config_xml_package_depth:
[xml] package_depth
...................
(integer, default 99) Controls which directories are identified as packages in
the report. Directories deeper than this depth are not reported as packages.
The default is that all directories are reported as packages.
.. _config_json:
[json]
------
Settings particular to JSON reporting. The settings in the ``[report]``
section also apply to JSON output, where appropriate.
.. versionadded:: 5.0
.. _config_json_output:
[json] output
.............
(string, default "coverage.json") Where to write the JSON file.
.. _config_json_pretty_print:
[json] pretty_print
...................
(boolean, default false) Controls if the JSON is outputted with whitespace
formatted for human consumption (True) or for minimum file size (False).
.. _config_json_show_contexts:
[json] show_contexts
....................
(boolean, default false) Should the JSON report include an indication of which
contexts executed each line. See :ref:`dynamic_contexts` for details.
.. _config_lcov:
[lcov]
------
Settings particular to LCOV reporting (see :ref:`cmd_lcov`).
.. versionadded:: 6.3
[lcov] output
.............
(string, default "coverage.lcov") Where to write the LCOV file.
|