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
|
2020-08-21 09:20:36 +00:00
|
|
|
format-check:
|
|
|
|
black --check .
|
2020-08-02 19:51:15 +00:00
|
|
|
format:
|
2020-08-21 09:20:36 +00:00
|
|
|
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
|