fix/cluster-manager-crash-due-to-overpass-exception #72

Merged
kscheidecker merged 24 commits from fix/cluster-manager-crash-due-to-overpass-exception into main 2025-11-24 19:22:23 +00:00
2 changed files with 14 additions and 18 deletions
Showing only changes of commit e1dbbbb274 - Show all commits

View File

@@ -15,17 +15,15 @@ jobs:
- uses: https://gitea.com/actions/checkout@v4
- name: Install dependencies
run: |
apt-get update && apt-get install -y python3 python3-pip
pip install pipenv
- name: Install uv
uses: astral-sh/setup-uv@v6
with:
version: "0.9.11"
- name: Install packages
run: |
ls -la
# only install dev-packages
pipenv install --categories=dev-packages
- name: Install dependencies
working-directory: backend
run: |
uv sync --frozen --no-cache --no-dev
- name: Run linter
run: pipenv run pylint src --fail-under=9

View File

@@ -15,17 +15,15 @@ jobs:
- uses: https://gitea.com/actions/checkout@v4
- name: Install dependencies
run: |
apt-get update && apt-get install -y python3 python3-pip
pip install uv
- name: Install uv
uses: astral-sh/setup-uv@v6
with:
version: "0.9.11"
- name: Install packages
run: |
ls -la
# install all packages, including dev-packages
uv sync
- name: Install dependencies
working-directory: backend
run: |
uv sync --frozen --no-cache --no-dev
- name: Run Tests
run: uv run pytest src --html=report.html --self-contained-html --log-cli-level=DEBUG