Files
textual/Makefile
2022-01-19 14:56:03 +00:00

9 lines
146 B
Makefile

test:
pytest --cov-report term-missing --cov=textual tests/ -vv
typecheck:
mypy src/textual
format:
black src
format-check:
black --check src