Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.

Skip to content
Snippets Groups Projects
Commit 455a22c7 authored by GotthardG's avatar GotthardG
Browse files

Sync project metadata with `pyproject.toml`

Updated scripts and backend to dynamically retrieve project name and version from `pyproject.toml`. This ensures consistent metadata across the OpenAPI client generation and the FastAPI application.
parent c57d1156
No related branches found
No related tags found
No related merge requests found
Pipeline #44745 passed with warnings
......@@ -24,6 +24,7 @@ test:
- source $VIRTUAL_ENV/bin/activate
- pip install -r requirements.txt
- export PYTHONPATH=$PYTHONPATH:/home/gitlab-runner/builds/t3_38ooWt/0/mx/heidi-v2/backend
- cd /home/gitlab-runner/builds/t3_38ooWt/0/mx/heidi-v2 # Change to the project root
- pytest --cov=app --cov-report=xml # Run tests and generate coverage report
lint:
......
......@@ -28,11 +28,12 @@ def get_project_metadata():
from pathlib import Path
import tomllib
# Adjust path resolution to pinpoint the actual folder containing `pyproject.toml`
root_dir = Path(__file__).resolve().parent.parent.parent # Root of the repository
pyproject_path = root_dir / "pyproject.toml" # Update properly
# Dynamically resolve the project root folder correctly.
# Assume that `pyproject.toml` is located in the heidi-v2 root folder
root_dir = Path(__file__).resolve().parent.parent.parent
pyproject_path = root_dir / "heidi-v2" / "pyproject.toml"
print(f"Looking for pyproject.toml at: {pyproject_path}") # Debug output
print(f"Looking for pyproject.toml at: {pyproject_path}") # Debugging output
if not pyproject_path.exists():
raise FileNotFoundError(f"{pyproject_path} not found")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment