Poetry
code:memo
curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python -
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が選択できます。
公式: Poetry - Python dependency management and packaging made easy
#パッケージマネージャー #Pythonパッケージ管理 #Python