Add flake8 as linter

This commit is contained in:
YuvalG
2020-10-17 20:05:47 +03:00
parent 3dc7a2fbd8
commit 08fc9d0663
7 changed files with 358 additions and 292 deletions

View File

@@ -1,2 +1,7 @@
test:
python -m pytest --verbose -s tests
FLAKE_FLAGS = --ignore=E501,F401,F403,F405
lint:
python -m flake8 $(FLAKE_FLAGS)
test:
python -m pytest --verbose -s tests