add pyflakes to dev deps, run pyflakes in CI

This commit is contained in:
Jonathan Wren 2020-04-11 14:26:41 -07:00
parent e3a46e9846
commit a03445bb84
4 changed files with 16 additions and 70 deletions

View file

@ -13,11 +13,12 @@ clean:
html:
poetry run mkdocs serve
format: ## check style with flake8
poetry run black features jrnl
format: ## Format files to match style
poetry run black .
lint: ## check style with flake8
poetry run flake8 jrnl features --ignore E501
lint: ## Check style with various tools
poetry run black --check --diff .
poetry run pyflakes .
test: ## Run behave tests
poetry run behave