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 56d2a1c3 authored by GotthardG's avatar GotthardG
Browse files

Update dependencies and improve Python path handling

Updated several frontend dependencies including MUI packages and added new ones like `@mui/x-charts`. Adjusted the Python path setup in the CI configuration to correctly point to the `aaredb` backend, ensuring accurate module resolution.
parent e22fc86d
No related branches found
No related tags found
No related merge requests found
Pipeline #54517 failed
# tests/test_auth.py
import pytest
from fastapi.testclient import TestClient
from backend.main import app
client = TestClient(app)
@pytest.fixture(scope="module")
def client():
with TestClient(app) as test_client: # ensures lifespan/startup executes
yield test_client
def test_login_success():
......
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