Skip to content

Commit 7f245f1

Browse files
committed
Fixes for test workflows and db
1 parent 2deea38 commit 7f245f1

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
uses: actions/setup-python@v6
5858
id: setup-python
5959
with:
60-
python-version: "3.11"
60+
python-version: "3.12"
6161

6262
- name: Cache uv folder
6363
id: cache-uv

requirements-common.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jellyfish==1.0.4 # String Matching
1818
Jinja2==3.1.6 # template engine for html files
1919
phonenumbers==8.13.43 # Used for phone number validation
2020
psutil==7.0.0 # psutil is used to determine the number of Hyperion workers
21-
psycopg[binary]==3.2.10 # PostgreSQL adapter for *synchronous* operations at startup (database initializations & migrations)
21+
psycopg[binary]==3.2.9 # PostgreSQL adapter for *synchronous* operations at startup (database initializations & migrations)
2222
pydantic-settings==2.3.4
2323
pydantic==2.7.4
2424
pyjwt[crypto]==2.8.0 # generate and verify the JWT tokens, imported as `jwt`

tests/config.test.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,7 @@ AUTH_CLIENTS:
123123
#SQLITE_DB: app.db # If set, the application use a SQLite database instead of PostgreSQL, for testing or development purposes (if possible PostgreSQL should be used instead)
124124
DATABASE_DEBUG: False # If True, will print all SQL queries in the console
125125
LOG_DEBUG_MESSAGES: True
126+
ENABLE_RATE_LIMITER: False
126127

127128
#####################################
128129
# SMTP configuration using starttls #

0 commit comments

Comments
 (0)