build: merge of VAD

ref: N25B-213
This commit is contained in:
JobvAlewijk
2025-10-29 10:32:43 +01:00
13 changed files with 483 additions and 3 deletions

View File

@@ -35,10 +35,16 @@ uv run fastapi dev src/control_backend/main.py
```
## Testing
Testing happens automatically when opening a merge request to any branch. If you want to manually run the test suite, you can do so by running the following:
Testing happens automatically when opening a merge request to any branch. If you want to manually run the test suite, you can do so by running the following for unit tests:
```bash
uv run --only-group test pytest
uv run --only-group test pytest test/unit
```
Or for integration tests:
```bash
uv run --group integration-test pytest test/integration
```
## GitHooks