diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-10-04 11:08:36 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-10-04 11:08:36 -0400 |
commit | 5205da079a8e099f9f5c6895b2cd634fc512fc55 (patch) | |
tree | 75af617e7645f2ba8070f41659b919279bf3daf9 /tests/test_process.py | |
parent | 6bf4946e0bc8599a1258c5107f7eece2efa70925 (diff) | |
download | python-coveragepy-git-5205da079a8e099f9f5c6895b2cd634fc512fc55.tar.gz |
Combining now issues warnings on unreadable files, unconditionally
Diffstat (limited to 'tests/test_process.py')
-rw-r--r-- | tests/test_process.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_process.py b/tests/test_process.py index b41472d6..4902f7c0 100644 --- a/tests/test_process.py +++ b/tests/test_process.py @@ -112,7 +112,7 @@ class ProcessTest(CoverageTest): self.make_file(".coverage.bad", "This isn't a coverage data file.") # Combine the parallel coverage data files into .coverage . - out = self.run_command("coverage combine -i") + out = self.run_command("coverage combine") self.assert_exists(".coverage") self.assert_exists(".coverage.bad") warning_regex = ( |