rich/Makefile

14 lines
280 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
format-check:
black --check .
format:
black .
2019-12-23 16:21:51 +00:00
typecheck:
2021-08-05 19:34:48 +00:00
mypy -p rich --strict --no-incremental
2019-12-23 16:21:51 +00:00
typecheck-report:
2021-05-02 00:27:17 +00:00
mypy -p rich --strict --html-report mypy_report
2019-12-29 18:03:42 +00:00
.PHONY: docs
docs:
cd docs; make html