From 5205da079a8e099f9f5c6895b2cd634fc512fc55 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Sun, 4 Oct 2015 11:08:36 -0400 Subject: Combining now issues warnings on unreadable files, unconditionally --- tests/test_process.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/test_process.py') 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 = ( -- cgit v1.2.1