Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Python Nose (nosetests) を使用して doctests のみを実行する方法はありますか? . 単体テストは実行したくありませんが、doctest のみを実行します。
ありがとう。
すべての通常のテスト ファイルを無視して、その効果を得ることができます。-Iこれは、または--ignore-filesオプションと のような正規表現を使用して簡単に実行できます.*\.py。
-I
--ignore-files
.*\.py
別の方法として、doctests を別のディレクトリに保存し、その上でノーズを起動することもできます。
鼻の新しいバージョンでは、これはもう機能しないようです。