mirror of
https://github.com/Textualize/rich.git
synced 2025-12-23 07:08:35 +00:00
9 lines
272 B
Makefile
9 lines
272 B
Makefile
test:
|
|
pytest --cov-report term-missing --cov=rich tests/ -vv
|
|
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
|