Poetry
code:memo
poetry completions fish > (brew --prefix)/share/fish/vendor_completions.d/poetry.fish
poetry new poetry-demo
code:memo
poetry run pytest \
--cov=kenall \
--cov-branch \
-v ./tests/* \
--cov-report=html
--cov : テスト対象のディレクトリを指定します
--cov-branch : 条件分岐(c1) のカバレッジを取得します
-v : テストコードを指定します
--cov-report : レポートを出力します。htmlやxmlが選択できます。