diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-07-30 07:13:45 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-07-30 07:13:45 -0400 |
commit | 4c89d686e4db822d17be56d338a89a83f64de59b (patch) | |
tree | 797749e0e5e10c66207ba71158e6c90b66d1f6f6 /coverage/control.py | |
parent | 1665b0dff0f1036660963753326b6da8859f062f (diff) | |
download | python-coveragepy-git-4c89d686e4db822d17be56d338a89a83f64de59b.tar.gz |
Refactoring cmdline in prep for getting --append to work again.
Diffstat (limited to 'coverage/control.py')
-rw-r--r-- | coverage/control.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/coverage/control.py b/coverage/control.py index 76960a49..80bd853f 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): |