テストを複数の Python ファイルに分割します。
tests
├── __init__.py
├── test_apples.py
└── test_bananas.py.py
「__init__.py」ファイルにテストをインポートします。
from test_apples import ApplesTest
from test_bananas import BananasTest
ただし、コマンドラインで Pyflakes を実行する:
pyflakes .
次のエラーを出力します。
tests/__init__.py:1: [E] PYFLAKES:'ApplesTest' imported but unused
tests/__init__.py:2: [E] PYFLAKES:'BananasTest' imported but unused