mirror of
https://github.com/Textualize/rich.git
synced 2025-08-04 18:18:22 +00:00
13 lines
262 B
Makefile
13 lines
262 B
Makefile
test:
|
|
TERM=unknown pytest --cov-report term-missing --cov=rich tests/ -vv
|
|
format-check:
|
|
black --check .
|
|
format:
|
|
black .
|
|
typecheck:
|
|
mypy -p rich --no-incremental
|
|
typecheck-report:
|
|
mypy -p rich --html-report mypy_report
|
|
.PHONY: docs
|
|
docs:
|
|
cd docs; make html
|