blob: 7926e9cd6f3c917ebd7148125a62b5fbb7c24e23 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
.. code::
$ coverage combine --help
Usage: coverage combine [options] <path1> <path2> ... <pathN>
Combine data from multiple coverage files collected with 'run -p'. The
combined results are written to a single file representing the union of the
data. The positional arguments are data files or directories containing data
files. If no paths are provided, data files in the default data file's
directory are combined.
Options:
-a, --append Append coverage data to .coverage, otherwise it starts
clean each time.
--keep Keep original coverage files, otherwise they are deleted.
--debug=OPTS Debug options, separated by commas. [env: COVERAGE_DEBUG]
-h, --help Get help on this command.
--rcfile=RCFILE Specify configuration file. By default '.coveragerc',
'setup.cfg', 'tox.ini', and 'pyproject.toml' are tried.
[env: COVERAGE_RCFILE]
|