File size: 307 Bytes
065fee7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
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
|