rich/Makefile

14 lines
267 B
Makefile

test:
pytest --cov-report term-missing --cov=rich tests/ -vv
format-check:
black --check .
format:
black .
typecheck:
mypy -p rich --strict --no-incremental
typecheck-report:
mypy -p rich --strict --html-report mypy_report
.PHONY: docs
docs:
cd docs; make html