Omit ui from coverage tests

This commit is contained in:
ChristianZaccaria 2025-07-09 16:43:31 +01:00
parent 901cfcd647
commit 83f3a48539
4 changed files with 6 additions and 28 deletions

View file

@ -19,16 +19,9 @@ Unit tests verify individual components and functions in isolation. They are fas
#### Using the Unit Test Script (Recommended)
The easiest way to run unit tests is using the provided script:
The easiest way to run unit tests is by using the provided script:
```bash
# Activate virtual environment
uv venv .venv --python 3.12
source .venv/bin/activate
# Install dependencies
uv pip install -r requirements.txt
# Run all unit tests and generate coverage report
PYTHON_VERSION=3.12 ./scripts/unit-tests.sh
```