rich/Makefile
Nathan Page 9a0044e880 Add black format check
This will provide a useful ci check before users can merge.
2020-08-02 15:51:15 -04:00

11 lines
300 B
Makefile

test:
pytest --cov-report term-missing --cov=rich tests/ -vv
format:
black --check rich
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