I would like to print coverage report for my unit tests written with Python Standard Library's unittest in the same fashion as I am able to print coverage report for unit test files written with pytest using commands pytest --cov libraries.foo libraries\tests\test_library_foo.py and then coverage report -m with the output:
Name Stmts Miss Cover Missing
------------------------------------------------------------------------------
libraries\tests\test_library_foo.py 200 10 95% 50-65, 70-85
------------------------------------------------------------------------------
TOTAL 200 10 95%