summaryrefslogtreecommitdiff
path: root/doc/help/combine.rst
diff options
context:
space:
mode:
Diffstat (limited to 'doc/help/combine.rst')
-rw-r--r--doc/help/combine.rst21
1 files changed, 21 insertions, 0 deletions
diff --git a/doc/help/combine.rst b/doc/help/combine.rst
new file mode 100644
index 00000000..bf15c23f
--- /dev/null
+++ b/doc/help/combine.rst
@@ -0,0 +1,21 @@
+
+.. 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.
+ --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]
+