fixed the missing dependency in the refiner and changed the test run to using uv

This commit is contained in:
2025-07-26 12:44:12 +02:00
parent ecdef605a7
commit 19b0c37a97
4 changed files with 15 additions and 8 deletions

View File

@@ -18,17 +18,17 @@ jobs:
- name: Install dependencies
run: |
apt-get update && apt-get install -y python3 python3-pip
pip install pipenv
pip install uv
- name: Install packages
run: |
ls -la
# install all packages, including dev-packages
pipenv install --dev
uv sync
working-directory: backend
- name: Run Tests
run: pipenv run pytest src --html=report.html --self-contained-html --log-cli-level=DEBUG
run: uv run pytest src --html=report.html --self-contained-html --log-cli-level=DEBUG
working-directory: backend
- name: Upload HTML report