Move syntax checking before unit tests

This commit is contained in:
Donncha Ó Cearbhaill 2023-07-21 11:30:59 +02:00
parent 76d7534b05
commit 1a07b9a78f
1 changed files with 2 additions and 1 deletions

View File

@ -2,9 +2,10 @@ PWD = $(shell pwd)
check:
flake8
pytest -q
ruff check -q .
black --check .
pytest -q
clean:
rm -rf $(PWD)/build $(PWD)/dist $(PWD)/mvt.egg-info