Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 335 Bytes

File metadata and controls

32 lines (23 loc) · 335 Bytes

Development

Run a development server

uvicorn findthatpostcode:app --reload

Testing

python -m pytest

Using coverage:

coverage run -m pytest && coverage html
python -m http.server -d htmlcov 8001

Linting/formatting

ruff .
ruff format --check .
ruff . --fix
ruff format .