summaryrefslogtreecommitdiff
path: root/test/test_process.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_process.py')
-rw-r--r--test/test_process.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/test_process.py b/test/test_process.py
index d33dac59..259bf259 100644
--- a/test/test_process.py
+++ b/test/test_process.py
@@ -358,6 +358,7 @@ class ProcessTest(CoverageTest):
out = self.run_command("coverage run i_dont_exist.py")
self.assertIn("No file to run: 'i_dont_exist.py'", out)
self.assertNotIn("warning", out)
+ self.assertNotIn("Exception", out)
out = self.run_command("coverage run -m no_such_module")
self.assertTrue(
@@ -365,6 +366,7 @@ class ProcessTest(CoverageTest):
("No module named 'no_such_module'" in out)
)
self.assertNotIn("warning", out)
+ self.assertNotIn("Exception", out)
if sys.version_info >= (3, 0): # This only works on 3.x for now.
# It only works with the C tracer.