diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-07-30 07:15:12 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-07-30 07:15:12 -0400 |
commit | c78f8f2df1e3d2843514b98b9fedafb454711b0c (patch) | |
tree | 8b62cdc6694310f62341090d6729965f82275f6a /coverage/control.py | |
parent | dd427de22a1fa1aedbd639d74adce9535da2f52e (diff) | |
parent | 7f0e87b3e2a99968e7e49eb8b7d2231b801b7da9 (diff) | |
download | python-coveragepy-c78f8f2df1e3d2843514b98b9fedafb454711b0c.tar.gz |
Automated merge with ssh://bitbucket.org/ned/coveragepy
Diffstat (limited to 'coverage/control.py')
-rw-r--r-- | coverage/control.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coverage/control.py b/coverage/control.py index 8a671fe..80bd853 100644 --- a/coverage/control.py +++ b/coverage/control.py @@ -721,6 +721,7 @@ class Coverage(object): """ self._init() + aliases = None if self.config.paths: aliases = PathAliases() @@ -728,6 +729,7 @@ class Coverage(object): result = paths[0] for pattern in paths[1:]: aliases.add(pattern, result) + self.data_files.combine_parallel_data(self.data, aliases=aliases, data_dirs=data_dirs) def get_data(self): @@ -778,8 +780,6 @@ class Coverage(object): self.data.touch_file(py_file) # Add run information. - from coverage import __version__ - self.data.add_run_info( brief_sys=" ".join([ platform.python_implementation(), |