Setup Python project and CI
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
This commit is contained in:
31
Makefile
Normal file
31
Makefile
Normal file
@ -0,0 +1,31 @@
|
||||
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
|
Reference in New Issue
Block a user