rich/Makefile

12 lines
306 B
Makefile
Raw Normal View History

2019-12-07 21:16:49 +00:00
test:
2020-06-20 17:21:45 +00:00
pytest --cov-report term-missing --cov=rich tests/ -vv
format:
2020-08-20 12:55:49 +00:00
black --check rich tests
2019-12-23 16:21:51 +00:00
typecheck:
2020-06-20 17:21:45 +00:00
mypy -p rich --ignore-missing-imports --warn-unreachable
2019-12-23 16:21:51 +00:00
typecheck-report:
2020-01-16 16:25:10 +00:00
mypy -p rich --ignore-missing-imports --warn-unreachable --html-report mypy_report
2019-12-29 18:03:42 +00:00
.PHONY: docs
docs:
cd docs; make html