File size: 320 Bytes
dae14ad | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | test:
pytest --cov-report term-missing --cov=rich tests/ -vv
format-check:
black --check .
format:
black .
typecheck:
mypy -p rich --ignore-missing-imports --warn-unreachable
typecheck-report:
mypy -p rich --ignore-missing-imports --warn-unreachable --html-report mypy_report
.PHONY: docs
docs:
cd docs; make html
|