rich/Makefile

16 lines
307 B
Makefile
Raw Normal View History

2019-12-07 21:16:49 +00:00
test:
2022-01-05 14:40:36 +00:00
TERM=unknown pytest --cov-report term-missing --cov=rich tests/ -vv
2022-07-15 10:07:41 +00:00
test-no-cov:
TERM=unknown pytest tests/ -vv
format-check:
black --check .
format:
black .
2019-12-23 16:21:51 +00:00
typecheck:
2022-03-26 15:26:48 +00:00
mypy -p rich --no-incremental
2019-12-23 16:21:51 +00:00
typecheck-report:
mypy -p rich --html-report mypy_report
2019-12-29 18:03:42 +00:00
.PHONY: docs
docs:
cd docs; make html