雑多な技術系メモ

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

2018-05-10から1日間の記事一覧

【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

vimでjsonをうまく形成

まず、jqをインストール sudo apt-get install jq その後に以下のサイトをもとにvimrcを修正 https://qiita.com/tekkoc/items/324d736f68b0f27680b8

【python】カレントディレクトリのpathの追加

import os, sys print(os.getcwd()) sys.path.append(os.getcwd())