Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 535 Bytes

coverage.md

File metadata and controls

37 lines (26 loc) · 535 Bytes

coverage of python program

Setup

  1. Install coverage package.

    python3 -m pip install coverage
    

Run

  1. Run python program with coverage tool.

    coverage run -m dance
    

View coverage report

  1. Output coverage data as an HTML.

    coverage html
    

Reference


Takashi Masuyama < mamewotoko@gmail.com > http://mamewo.ddo.jp/