mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-06-28 05:26:13 +02:00
add pyflakes to dev deps, run pyflakes in CI
This commit is contained in:
parent
e3a46e9846
commit
a03445bb84
4 changed files with 16 additions and 70 deletions
9
Makefile
9
Makefile
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue