blob: b204e01f1597595489dfc58c6f565a18ebad3a78 [file] [log] [blame]
.PHONY: test_unit
test_unit:
python3 -b -m pytest tests
lint:
python3 -m flake8
.PHONY: mypy
mypy:
mypy --ignore-missing-imports --follow-imports=skip --strict-optional --warn-no-return .
.PHONY: test
test: lint mypy