diff options
author | Judson Neer <judson.neer@gmail.com> | 2021-01-05 08:53:19 -0800 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2021-01-06 13:50:13 -0500 |
commit | 051bdf23b5d86a15ada43523c00f8f3462063ad6 (patch) | |
tree | 5a726432bb9793a1fef67bb827402667c6ff5763 /tests/test_plugins.py | |
parent | 7ff93a9740da5dec4eba6c6cad288d25a472d75a (diff) | |
download | python-coveragepy-git-051bdf23b5d86a15ada43523c00f8f3462063ad6.tar.gz |
Always output TOTAL line.
Diffstat (limited to 'tests/test_plugins.py')
-rw-r--r-- | tests/test_plugins.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/test_plugins.py b/tests/test_plugins.py index 1f224695..813d370e 100644 --- a/tests/test_plugins.py +++ b/tests/test_plugins.py @@ -522,6 +522,8 @@ class GoodFileTracerTest(FileTracerTest): 'Name Stmts Miss Cover Missing', '-----------------------------------------------', 'unsuspecting.py 6 3 50% 2, 4, 6', + '-----------------------------------------------', + 'TOTAL 6 3 50%', ] self.assertEqual(expected, report) self.assertEqual(total, 50) |