diff options
author | stepeos <82703776+stepeos@users.noreply.github.com> | 2022-11-05 17:29:04 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-05 09:29:04 -0700 |
commit | cf1efa814e905ab1e2bc17795b1dbe6d437b39e5 (patch) | |
tree | e7f236575db700b37b595669bd8dbe803b1b53d4 /tests/test_cmdline.py | |
parent | 27fd4a9b8999dba408d1bc5a5df675d7caaa85b8 (diff) | |
download | python-coveragepy-git-cf1efa814e905ab1e2bc17795b1dbe6d437b39e5.tar.gz |
feat: report terminal output in Markdown Table format #1418 (#1479)
* refactoring normal reporting text output
* implemented markdown feature from #1418
* minor changes
* fixed text output
* fixed precision for text and markdown report format
* minor changes
* finished testing for markdown format feature
* fixed testing outside test_summary.py
* removed fixed-length widespace padding for tests
* removed whitespaces
* refactoring, fixing docs, rewriting cmd args
* fixing code quality
* implementing requested changes
* doc fix
* test: add another test of correct report formatting
* fixed precision printing test
* style: adjust the formatting
Co-authored-by: Ned Batchelder <ned@nedbatchelder.com>
Diffstat (limited to 'tests/test_cmdline.py')
-rw-r--r-- | tests/test_cmdline.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_cmdline.py b/tests/test_cmdline.py index 305fbdbf..1b9a1ef0 100644 --- a/tests/test_cmdline.py +++ b/tests/test_cmdline.py @@ -44,7 +44,7 @@ class BaseCmdLineTest(CoverageTest): _defaults.Coverage().report( ignore_errors=None, include=None, omit=None, morfs=[], show_missing=None, skip_covered=None, contexts=None, skip_empty=None, precision=None, - sort=None, + sort=None, output_format=None, ) _defaults.Coverage().xml_report( ignore_errors=None, include=None, omit=None, morfs=[], outfile=None, |