mirror of https://github.com/Textualize/rich.git
16 lines
307 B
Makefile
16 lines
307 B
Makefile
test:
|
|
TERM=unknown pytest --cov-report term-missing --cov=rich tests/ -vv
|
|
test-no-cov:
|
|
TERM=unknown pytest 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
|