mirror of https://github.com/Textualize/rich.git
14 lines
320 B
Makefile
14 lines
320 B
Makefile
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
|