Skip to content

Commit

Permalink
Fixed github-actions.yml.
Browse files Browse the repository at this point in the history
  • Loading branch information
johnbywater committed Nov 8, 2024
1 parent ce4997f commit ced5835
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/github-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
postgres-version: ["12", "13", "14", "15", "16", "17"]
postgres-version: ["13", "14", "15", "16", "17"]
os: [ubuntu-20.04]
runs-on: ${{ matrix.os }}
services:
Expand Down
2 changes: 1 addition & 1 deletion tests/djangoproject/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@
"ENGINE": "django.db.backends.postgresql_psycopg2",
"NAME": os.getenv("POSTGRES_DB", "eventsourcing_django"),
"TEST": {
"NAME": os.getenv("POSTGRES_DB", "eventsourcing_django"),
"NAME": os.getenv("POSTGRES_DB", "test_eventsourcing_django"),
},
"USER": os.getenv("POSTGRES_USER", "eventsourcing"),
"PASSWORD": os.getenv("POSTGRES_PASSWORD", "eventsourcing"),
Expand Down

0 comments on commit ced5835

Please sign in to comment.