Files
textual/Makefile
Will McGugan 752609962f type fixes
2021-07-17 09:48:04 +01:00

9 lines
144 B
Makefile

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