blob: 6bed4f767ba7b00e4bc5364b9f7a1ec7f545bdf8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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
|