2022-05-07 15:38:01 +02:00
|
|
|
check:
|
2022-05-24 16:08:56 +02:00
|
|
|
pytest -vvv --log-level debug --cov --cov-report=term-missing --junitxml=report.xml
|
2022-05-07 15:38:01 +02:00
|
|
|
|
|
|
|
lint: black flake8 mypy
|
2022-01-30 15:02:43 +01:00
|
|
|
|
|
|
|
black:
|
|
|
|
black --line-length=79 *.py
|
|
|
|
|
|
|
|
flake8:
|
|
|
|
flake8 *.py
|
|
|
|
|
|
|
|
mypy:
|
2022-05-22 21:07:40 +02:00
|
|
|
mypy --strict --disallow-any-explicit node.py ranked_tree.py avl.py wavl.py ravl.py rbt.py
|
2022-05-16 00:26:49 +02:00
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -rf __pycache__ .hypothesis .mypy_cache .pytest_cache
|