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
|
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:
|
2022-03-26 15:26:48 +00:00
|
|
|
mypy -p rich --no-incremental
|
2019-12-23 16:21:51 +00:00
|
|
|
typecheck-report:
|
2022-03-21 17:30:43 +00:00
|
|
|
mypy -p rich --html-report mypy_report
|
2019-12-29 18:03:42 +00:00
|
|
|
.PHONY: docs
|
|
|
|
docs:
|
|
|
|
cd docs; make html
|