rich/Makefile

10 lines
313 B
Makefile
Raw Normal View History

2019-12-07 21:16:49 +00:00
test:
2019-12-11 18:33:49 +00:00
pytest --cov-report term-missing --cov=rich tests/ -v
2019-12-23 16:21:51 +00:00
typecheck:
mypy -p rich --python-version 3.7 --ignore-missing-imports --warn-unreachable
typecheck-report:
mypy -p rich --python-version 3.7 --ignore-missing-imports --warn-unreachable --html-report mypy_report
2019-12-29 18:03:42 +00:00
.PHONY: docs
docs:
cd docs; make html