雑多な技術系メモ

自分用のメモ。内容は保証しません。よろしくお願いします。

pytest

pytestについてのメモ

PyTestの階層問題 以下のようなディレクトリ構成の時、 . ├── main.py └── tests └── test_main.py ルートディレクトリから pytest を行うためには、tests/に"init"ファイルを置いておくと 上記のコードを実行できる つまり、以下のようになる。 . ├── main.…

【python】【pytest】pytest のインストール

pip install pytest pip install pytest-cov

【python】【pytest】pytestでのエラーの対処

エラー usage: pytest [options] [file_or_dir] [file_or_dir] [...] pytest: error: unrecognized arguments: --cov=app --cov-report=html --cov-report=html 対処 以下のpytest-covをインストールしたら、エラーが解消された pip install pytest-cov