docs: run development commands with uv

This commit is contained in:
Normann
2026-08-19 23:26:06 +02:00
parent 2dc9f82a91
commit ff9ea8fe7b
+4 -4
View File
@@ -58,14 +58,14 @@ Our code style checks use [`pre-commit`](https://pre-commit.com).
To run formatting automatically before every commit: To run formatting automatically before every commit:
```bash ```bash
pre-commit install uv run pre-commit install
pre-commit install --hook-type commit-msg --hook-type pre-push uv run pre-commit install --hook-type commit-msg --hook-type pre-push
``` ```
Or run them manually: Or run them manually:
```bash ```bash
pre-commit run --all-files uv run pre-commit run --all-files
``` ```
### Tests ### Tests
@@ -73,7 +73,7 @@ pre-commit run --all-files
Use `pytest` to run tests locally: Use `pytest` to run tests locally:
```bash ```bash
python -m pytest -vs --cov src --cov-report term-missing tests/ uv run python -m pytest -vs --cov src --cov-report term-missing tests/
``` ```
### Commit message style ### Commit message style