pytest-covによるカバレッジの取得
pytest-covはpytestの実行時にカバレッジを取得するためのプラグイン.
目次
インストール
pip install pytest-cov |
使用方法
ステートメントカバレッジ
pytest --cov |
ブランチカバレッジ
pytest --cov --cov-branch |
HTML形式でレポート出力
pytest --cov --cov-report=html |
網羅できなかった行を出力
次のオプション
--cov-report=term-missing |