summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--AUTHORS.txt1
-rw-r--r--coverage/cmdline.py5
-rw-r--r--coverage/control.py4
-rw-r--r--coverage/data.py40
-rw-r--r--tests/test_cmdline.py4
-rw-r--r--tests/test_data.py29
6 files changed, 62 insertions, 21 deletions
diff --git a/AUTHORS.txt b/AUTHORS.txt
index fb2f0bcd..2b84a1ba 100644
--- a/AUTHORS.txt
+++ b/AUTHORS.txt
@@ -16,6 +16,7 @@ Catherine Proulx
Chris Adams
Chris Rose
Christian Heimes
+Christine Lytwynec
Christoph Zwerschke
Danek Duvall
Danny Allen
diff --git a/coverage/cmdline.py b/coverage/cmdline.py
index 2be32947..c611e037 100644
--- a/coverage/cmdline.py
+++ b/coverage/cmdline.py
@@ -249,7 +249,7 @@ CMDS = {
),
'combine': CmdOptionParser("combine", GLOBAL_ARGS,
- usage = " ",
+ usage = "<dir1> <dir2> ... <dirN>",
description = "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."
@@ -430,7 +430,8 @@ class CoverageScript(object):
self.do_run(options, args)
if options.action == "combine":
- self.coverage.combine()
+ data_dirs = argv if argv else None
+ self.coverage.combine(data_dirs)
self.coverage.save()
# Remaining actions are reporting, with some common options.
diff --git a/coverage/control.py b/coverage/control.py
index 563925ef..4a9ac727 100644
--- a/coverage/control.py
+++ b/coverage/control.py
@@ -717,7 +717,7 @@ class Coverage(object):
self._harvest_data()
self.data.write(suffix=data_suffix)
- def combine(self):
+ def combine(self, data_dirs=None):
"""Combine together a number of similarly-named coverage data files.
All coverage data files whose name starts with `data_file` (from the
@@ -733,7 +733,7 @@ class Coverage(object):
result = paths[0]
for pattern in paths[1:]:
aliases.add(pattern, result)
- self.data.combine_parallel_data(aliases=aliases)
+ self.data.combine_parallel_data(aliases=aliases, data_dirs=data_dirs)
def _harvest_data(self):
"""Get the collected data and reset the collector.
diff --git a/coverage/data.py b/coverage/data.py
index 2c5d3516..ed79f794 100644
--- a/coverage/data.py
+++ b/coverage/data.py
@@ -1,5 +1,6 @@
"""Coverage data for Coverage."""
+import glob
import os
from coverage.backward import iitems, pickle
@@ -190,7 +191,7 @@ class CoverageData(object):
pass
return lines, arcs, plugins
- def combine_parallel_data(self, aliases=None):
+ def combine_parallel_data(self, aliases=None, data_dirs=None):
"""Combine a number of data files together.
Treat `self.filename` as a file prefix, and combine the data from all
@@ -199,23 +200,32 @@ class CoverageData(object):
If `aliases` is provided, it's a `PathAliases` object that is used to
re-map paths to match the local machine's.
+ If `data_dirs` is provided, then it combines the data files from each
+ directory into a single file.
+
"""
aliases = aliases or PathAliases()
data_dir, local = os.path.split(self.filename)
- localdot = local + '.'
- for f in os.listdir(data_dir or '.'):
- if f.startswith(localdot):
- full_path = os.path.join(data_dir, f)
- new_lines, new_arcs, new_plugins = self._read_file(full_path)
- for filename, file_data in iitems(new_lines):
- filename = aliases.map(filename)
- self.lines.setdefault(filename, {}).update(file_data)
- for filename, file_data in iitems(new_arcs):
- filename = aliases.map(filename)
- self.arcs.setdefault(filename, {}).update(file_data)
- self.plugins.update(new_plugins)
- if f != local:
- os.remove(full_path)
+ localdot = local + '.*'
+
+ data_dirs = data_dirs or [data_dir] or ['.']
+ files_to_combine = []
+ for d in data_dirs:
+ pattern = os.path.join(os.path.abspath(d), localdot)
+ files_to_combine.extend(glob.glob(pattern))
+
+ for f in files_to_combine:
+ new_lines, new_arcs, new_plugins = self._read_file(f)
+ for filename, file_data in iitems(new_lines):
+ filename = aliases.map(filename)
+ self.lines.setdefault(filename, {}).update(file_data)
+ for filename, file_data in iitems(new_arcs):
+ filename = aliases.map(filename)
+ self.arcs.setdefault(filename, {}).update(file_data)
+ self.plugins.update(new_plugins)
+
+ if os.path.basename(f) != local:
+ os.remove(f)
def add_line_data(self, line_data):
"""Add executed line data.
diff --git a/tests/test_cmdline.py b/tests/test_cmdline.py
index 775e0033..54d84197 100644
--- a/tests/test_cmdline.py
+++ b/tests/test_cmdline.py
@@ -214,10 +214,10 @@ class CmdLineTest(BaseCmdLineTest):
def test_combine(self):
# coverage combine
- self.cmd_executes("combine", """\
+ self.cmd_executes("combine datadir1", """\
.coverage()
.load()
- .combine()
+ .combine(["datadir1"])
.save()
""")
diff --git a/tests/test_data.py b/tests/test_data.py
index 0549a3c0..9156e5a9 100644
--- a/tests/test_data.py
+++ b/tests/test_data.py
@@ -1,5 +1,8 @@
"""Tests for coverage.data"""
+import os
+import shutil
+
from coverage.backward import pickle
from coverage.data import CoverageData
from coverage.files import PathAliases
@@ -154,3 +157,29 @@ class DataTest(CoverageTest):
covdata3, {'./a.py': 4, './sub/b.py': 2}, fullpath=True
)
self.assert_measured_files(covdata3, ['./a.py', './sub/b.py'])
+
+ def test_combining_from_different_directories(self):
+ try:
+ covdata1 = CoverageData()
+ covdata1.add_line_data(DATA_1)
+ os.makedirs('cov1')
+ covdata1.write_file('cov1/.coverage.1')
+
+ covdata2 = CoverageData()
+ covdata2.add_line_data(DATA_2)
+ os.makedirs('cov2')
+ covdata2.write_file('cov2/.coverage.2')
+
+ covdata3 = CoverageData()
+ covdata3.combine_parallel_data(data_dirs=[
+ 'cov1/',
+ 'cov2/',
+ ])
+
+ self.assert_summary(covdata3, SUMMARY_1_2)
+ self.assert_measured_files(covdata3, MEASURED_FILES_1_2)
+ finally:
+ # Use shutil here because if something goes wrong above, these
+ # dirs may not be empty and os.rmdir would fail to remove them.
+ shutil.rmtree('cov1')
+ shutil.rmtree('cov2')