fix: remove DB_PORT variable and use hardcoded value in CI workflow for consistency
Some checks failed
CI / test (pull_request) Failing after 2m24s

This commit is contained in:
2025-11-02 13:09:09 +01:00
parent f91349dedd
commit 82e98efb1b

View File

@@ -12,7 +12,6 @@ jobs:
APT_CACHER_NG: http://192.168.88.14:3142 APT_CACHER_NG: http://192.168.88.14:3142
DB_DRIVER: postgresql DB_DRIVER: postgresql
DB_HOST: postgres DB_HOST: postgres
DB_PORT: '5432'
DB_NAME: calminer_test DB_NAME: calminer_test
DB_USER: calminer DB_USER: calminer
DB_PASSWORD: calminer_password DB_PASSWORD: calminer_password
@@ -63,7 +62,7 @@ jobs:
env: env:
DATABASE_DRIVER: postgresql+psycopg2 DATABASE_DRIVER: postgresql+psycopg2
DATABASE_HOST: ${ { env.DB_HOST } } DATABASE_HOST: ${ { env.DB_HOST } }
DATABASE_PORT: ${ { env.DB_PORT } } DATABASE_PORT: 5432
DATABASE_USER: ${ { env.DB_USER } } DATABASE_USER: ${ { env.DB_USER } }
DATABASE_PASSWORD: ${ { env.DB_PASSWORD } } DATABASE_PASSWORD: ${ { env.DB_PASSWORD } }
DATABASE_NAME: ${ { env.DB_NAME } } DATABASE_NAME: ${ { env.DB_NAME } }