fix: hardcode database connection details in CI workflow for consistency
Some checks failed
CI / test (pull_request) Failing after 1m54s

This commit is contained in:
2025-11-02 13:40:06 +01:00
parent 82e98efb1b
commit f1bc7f06b9

View File

@@ -61,11 +61,11 @@ jobs:
- name: Run tests
env:
DATABASE_DRIVER: postgresql+psycopg2
DATABASE_HOST: ${ { env.DB_HOST } }
DATABASE_HOST: postgres
DATABASE_PORT: 5432
DATABASE_USER: ${ { env.DB_USER } }
DATABASE_PASSWORD: ${ { env.DB_PASSWORD } }
DATABASE_NAME: ${ { env.DB_NAME } }
DATABASE_USER: calminer
DATABASE_PASSWORD: calminer_password
DATABASE_NAME: calminer_test
run: |
pytest tests/ --cov=.