diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2021-10-08 11:43:00 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2021-10-08 11:43:00 -0400 |
commit | 35b28c01047f644cd4f1f3e10881ce14e5df87fd (patch) | |
tree | 3f3b4c33d07163201e370fbf54073f953266b95a /coverage/cmdline.py | |
parent | ee5d7ba0ad86068f9413a54659a2f8a58cd97f31 (diff) | |
download | python-coveragepy-git-35b28c01047f644cd4f1f3e10881ce14e5df87fd.tar.gz |
test: mark some uncovered things
Diffstat (limited to 'coverage/cmdline.py')
-rw-r--r-- | coverage/cmdline.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/coverage/cmdline.py b/coverage/cmdline.py index 1fa52a97..eae22f2f 100644 --- a/coverage/cmdline.py +++ b/coverage/cmdline.py @@ -646,6 +646,9 @@ class CoverageScript: show_contexts=options.show_contexts, **report_args ) + else: + # There are no other possible actions. + raise AssertionError if total is not None: # Apply the command line fail-under options, and then use the config |