0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

テスト関数名を日本語で書いた時にPycharmのコードインスペクションからの警告を抑制する妥協案

Posted at

私はテストコードの関数名を日本語で書くプラクティスを支持しています。
しかし、関数名を日本語で書くとPycharm(JetBrain製のIDE)から non ascii characters in an identifier という警告を受けます。
スクリーンショット 2022-08-14 7.25.00.png

この場合の妥協案を記載します。

妥協案は non ascii characters ~ のルールをテストコードファイルのスコープにおいて重要度を下げることです。

non ascii characters ~ のルールをテストコードファイルのスコープにおいて重要度を下げる

この環境設定メニューで Edit Scopes Order... を選択します。

スクリーンショット 2022-08-14 8.15.29.png

tests scope を作成し、testファイルの範囲を指定します
スクリーンショット 2022-08-14 8.17.11.png

先程の環境設定メニューで作成したtest scope を選択します
スクリーンショット 2022-08-14 8.17.50.png

重要度で No highliting, fix onlyを選択します

スクリーンショット 2022-08-14 8.18.21.png

以上で non ascii characters in an identifier という警告が消えます。

0
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?