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 1c44bc16 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 3ccf4ecc
No related branches found
No related tags found
No related merge requests found
Pipeline #54522 failed
......@@ -11,7 +11,7 @@ def client():
yield test_client
def test_login_success():
def test_login_success(client):
response = client.post(
"/auth/token/login", data={"username": "testuser", "password": "testpass"}
)
......@@ -19,7 +19,7 @@ def test_login_success():
assert "access_token" in response.json()
def test_login_failure():
def test_login_failure(client):
response = client.post(
"/auth/token/login", data={"username": "wrong", "password": "wrongpass"}
)
......@@ -27,7 +27,7 @@ def test_login_failure():
assert response.json() == {"detail": "Incorrect username or password"}
def test_protected_route():
def test_protected_route(client):
# Step 1: Login
response = client.post(
"/auth/token/login", data={"username": "testuser", "password": "testpass"}
......
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