chore: add makefile
• formatting • linting • type check • test runner Signed-off-by: Matej Focko <mfocko@redhat.com>
This commit is contained in:
parent
bc981a8bb4
commit
f960a24eb6
1 changed files with 11 additions and 0 deletions
11
Makefile
Normal file
11
Makefile
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
check: black flake8 mypy
|
||||||
|
pytest -vvv --log-level debug
|
||||||
|
|
||||||
|
black:
|
||||||
|
black --line-length=79 *.py
|
||||||
|
|
||||||
|
flake8:
|
||||||
|
flake8 *.py
|
||||||
|
|
||||||
|
mypy:
|
||||||
|
mypy --strict --disallow-any-explicit node.py avl.py wavl.py ravl.py
|
Loading…
Reference in a new issue