mirror of
https://github.com/venthur/blag.git
synced 2025-11-25 20:52:43 +00:00
28 lines
359 B
Makefile
28 lines
359 B
Makefile
.PHONY: \
|
|
test \
|
|
lint \
|
|
docs \
|
|
release \
|
|
clean
|
|
|
|
all: lint test
|
|
|
|
test:
|
|
pytest \
|
|
--cov=gron \
|
|
--cov-branch \
|
|
--cov-report=term-missing
|
|
|
|
lint:
|
|
flake8 gron
|
|
|
|
#docs:
|
|
# $(MAKE) -C docs html
|
|
|
|
release:
|
|
python3 setup.py sdist bdist_wheel upload
|
|
|
|
clean:
|
|
find . -type f -name *.pyc -delete
|
|
find . -type d -name __pycache__ -delete
|