Files
textual/Makefile
Will McGugan b2db7a63ab deploy command
2022-09-06 15:32:02 +01:00

18 lines
326 B
Makefile

test:
pytest --cov-report term-missing --cov=textual tests/ -vv
unit-test:
pytest --cov-report term-missing --cov=textual tests/ -vv -m "not integration_test"
typecheck:
mypy src/textual
format:
black src
format-check:
black --check src
docs-serve:
mkdocs serve
docs-build:
mkdocs build
docs-deploy:
mkdocs gh-deploy