Files
glowtables/Makefile
Val Lorentz b10f01d30b
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Setup Python project and CI
2023-05-20 14:25:39 +02:00

32 lines
412 B
Makefile

all: test
test: lint pytest
lint: black flake8 pylint isort mypy
black-check:
black --check glowtables/
black:
black glowtables/
flake8: black
flake8 glowtables/
pylint:
pylint glowtables/
isort-check:
isort --check-only glowtables/
isort:
isort glowtables/
mypy:
mypy --show-error-codes glowtables
pytest:
pytest --doctest-modules
.PHONY: black black-check isort isort-check mypy pytest test