All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
32 lines
412 B
Makefile
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
|