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 36f9978c 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 1c44bc16
No related branches found
No related tags found
No related merge requests found
Pipeline #54523 failed
......@@ -124,7 +124,11 @@ async def create_sample_event(
return sample # Return the sample, now including `mount_count`
@router.post("/{sample_id}/upload-images", response_model=Image)
@router.post(
"/{sample_id}/upload-images",
response_model=Image,
operation_id="upload_sample_image",
)
async def upload_sample_image(
sample_id: int,
uploaded_file: UploadFile = File(...),
......@@ -231,7 +235,9 @@ async def upload_sample_image(
return new_image
@router.get("/results", response_model=List[SampleResult])
@router.get(
"/results", response_model=List[SampleResult], operation_id="get_sample_results"
)
async def get_sample_results(active_pgroup: str, db: Session = Depends(get_db)):
# Query samples for the active pgroup using joins.
samples = (
......@@ -302,6 +308,7 @@ async def get_sample_results(active_pgroup: str, db: Session = Depends(get_db)):
@router.post(
"/samples/{sample_id}/experiment_parameters",
response_model=ExperimentParametersRead,
operation_id="create_experiment_parameters_for_sample",
)
def create_experiment_parameters_for_sample(
sample_id: int,
......@@ -344,7 +351,9 @@ def create_experiment_parameters_for_sample(
return new_exp
@router.post("/processing-results", response_model=ResultResponse)
@router.post(
"/processing-results", response_model=ResultResponse, operation_id="create_result"
)
def create_result(payload: ResultCreate, db: Session = Depends(get_db)):
# Check experiment existence
experiment = (
......@@ -376,7 +385,9 @@ def create_result(payload: ResultCreate, db: Session = Depends(get_db)):
@router.get(
"/processing-results/{sample_id}/{run_id}", response_model=List[ResultResponse]
"/processing-results/{sample_id}/{run_id}",
response_model=List[ResultResponse],
operation_id="get_results_for_run_and_sample",
)
async def get_results_for_run_and_sample(
sample_id: int, run_id: int, db: Session = Depends(get_db)
......
......@@ -143,8 +143,8 @@ async def lifespan(app: FastAPI):
load_slots_data(db)
else: # dev or test environments
print(f"{environment.capitalize()} environment: Regenerating database.")
Base.metadata.drop_all(bind=engine)
Base.metadata.create_all(bind=engine)
# Base.metadata.drop_all(bind=engine)
# Base.metadata.create_all(bind=engine)
# from sqlalchemy.engine import reflection
# from app.models import ExperimentParameters # adjust the import as needed
# inspector = reflection.Inspector.from_engine(engine)
......
......@@ -33,5 +33,5 @@ dependencies = [
[tool.pytest.ini_options]
norecursedirs = ["backend/python-client"]
# Or limit files explicitly
python_files = ["test_auth.py"]#,
python_files = [""]#,""test_auth.py"]#,
#"test_contact.py"]
\ No newline at end of file
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