I split my tests across multiple Python files:
tests
├── __init__.py
├── test_apples.py
└── test_bananas.py.py
I import the tests in the ‘__init__.py’ file:
from test_apples import ApplesTest
from test_bananas import BananasTest
However running Pyflakes on the command-line:
pyflakes .
outputs the following errors:
tests/__init__.py:1: [E] PYFLAKES:'ApplesTest' imported but unused
tests/__init__.py:2: [E] PYFLAKES:'BananasTest' imported but unused
To ignore all errors F401 (‘imported but unused’) in ‘__init__.py’ files, the option ‘per-file-ignores’ which has been available since version 3.7.0 of Flake8 (a better Pyflakes) is very convenient. It can be used on the command-line:
flake8 --per-file-ignores="__init__.py:F401" .
or in a configuration file (‘.flake8’, ‘setup.cfg’ or ‘tox.ini’):
[flake8]
per-file-ignores = __init__.py:F401
Sometimes you have to skip a line. According to the current versions docs (flake8 2.4.1) The files that contain
# flake8: noqa
are skipped. This works, and # noga, # pyflakes.ignore not.
In my version of PyFlakes (0.7.3), using __all__
works.
Additionally, to skip a line, you should add # noqa
.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With