Files
textual/Makefile
Will McGugan bc7ce4b969 black
2021-07-17 09:13:46 +01:00

9 lines
153 B
Makefile

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