diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-07-30 21:54:39 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-07-30 21:54:39 -0400 |
commit | 74fb855535ade275af20f2afc8097ff9723a0831 (patch) | |
tree | 058fe0073a48bb9a6a146fd9535a144c5b578979 /coverage/control.py | |
parent | 9cfb5f9f89fb56fc469336b221656251571a8ec0 (diff) | |
download | python-coveragepy-74fb855535ade275af20f2afc8097ff9723a0831.tar.gz |
Erasing in parallel mode now deletes all the data files. #262
Diffstat (limited to 'coverage/control.py')
-rw-r--r-- | coverage/control.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coverage/control.py b/coverage/control.py index 8e51c2c..3ff7e2a 100644 --- a/coverage/control.py +++ b/coverage/control.py @@ -653,7 +653,7 @@ class Coverage(object): self._init() self.collector.reset() self.data.erase() - self.data_files.erase() + self.data_files.erase(parallel=self.config.parallel) def clear_exclude(self, which='exclude'): """Clear the exclude list.""" |