Skip to content

Commit c6671ff

Browse files
committed
Merge branch 'main' into force-compare-mode
* main: Removed limit restriction of runs for now. Needs proper pagination Bump playwright/python in /docker/auxiliary-containers/gcb_playwright (#1114) Bump fastapi[standard] from 0.115.11 to 0.115.12 (#1113)
2 parents 7a571b0 + 01d6bda commit c6671ff

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

api/scenario_runner.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -216,9 +216,9 @@ async def get_runs(uri: str | None = None, branch: str | None = None, machine_id
216216

217217
query = f"{query} ORDER BY r.created_at DESC"
218218

219-
check_int_field_api(limit, 'limit', 50)
220-
query = f"{query} LIMIT %s"
221-
params.append(limit)
219+
#check_int_field_api(limit, 'limit', 50)
220+
#query = f"{query} LIMIT %s"
221+
#params.append(limit)
222222

223223

224224
data = DB().fetch_all(query, params=params)

docker/auxiliary-containers/gcb_playwright/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mcr.microsoft.com/playwright/python:v1.50.0-noble
1+
FROM mcr.microsoft.com/playwright/python:v1.51.0-noble
22

33
# Install dependencies
44
RUN apt-get update && apt-get install -y curl wget gnupg && rm -rf /var/lib/apt/lists/*

docker/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
gunicorn==23.0.0
22
psycopg[binary]==3.2.6
33
psycopg_pool==3.2.6
4-
fastapi[standard]==0.115.11
4+
fastapi[standard]==0.115.12
55
starlette>=0.35
66
uvicorn[standard]==0.34.0
77
pandas==2.2.3

0 commit comments

Comments
 (0)