Skip to content

Commit fa63417

Browse files
committed
fix
1 parent ee79566 commit fa63417

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ jobs:
5353
# Install main dependencies, dev dependencies, and the specific Django version for the matrix
5454
# Using -e .[dev] installs the current package in editable mode with dev extras
5555
uv pip install --system -e .[dev]
56-
uv pip install --system Django==${{ matrix.django-version }}
57-
uv pip install --system ${{ matrix.psycopg-package }}
56+
pip install Django==${{ matrix.django-version }}
57+
pip install ${{ matrix.psycopg-version }}
5858
- name: Run tests
5959
run: |
6060
./check-lint.sh

testproject/settings.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -78,11 +78,14 @@
7878
DATABASES = {
7979
"default": {
8080
"ENGINE": "django.db.backends.postgresql",
81-
"NAME": "testdb",
81+
"NAME": "sqf-db",
8282
"USER": "postgres",
8383
"PASSWORD": "postgres",
8484
"HOST": os.environ.get("DEFAULT_DB_HOST") or "localhost",
8585
"PORT": "5432",
86+
"TEST": {
87+
"NAME": "sqf-db-test",
88+
},
8689
}
8790
}
8891

0 commit comments

Comments
 (0)