August 2018
Beginner
160 pages
4h 8m
English
This plugin allows you to check your code using pyflakes (https://pypi.org/project/pyflakes/), which is a static checker of source files for common errors, such as missing imports and unknown variables.
After installed, use the --flakes option to activate it:
λ pytest pytest-flakes.py --flake...============================= FAILURES ==============================__________________________ pyflakes-check ___________________________CH5\pytest-flakes.py:1: UnusedImport'os' imported but unusedCH5\pytest-flakes.py:6: UndefinedNameundefined name 'unknown'
This will run the flake checks alongside your normal tests, making it an easy and cheap way to keep your code tidy and prevent some errors. The plugin also keeps a local cache of ...
Read now
Unlock full access