opdb/Makefile

32 lines
370 B
Makefile
Raw Normal View History

2022-09-17 21:35:48 +00:00
all: test
test: lint pytest
lint: black flake8 pylint isort mypy
black-check:
black --check opdb/
black:
black opdb/
flake8: black
flake8 opdb/
2022-09-17 21:35:48 +00:00
pylint:
pylint opdb/
isort-check:
isort --check-only opdb/
isort:
isort opdb/
mypy:
2022-09-17 21:35:48 +00:00
mypy --show-error-codes opdb
pytest:
pytest --doctest-modules
2022-09-17 21:35:48 +00:00
.PHONY: black black-check isort isort-check mypy pytest test