File tree 2 files changed +6
-3
lines changed
2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 53
53
# Install main dependencies, dev dependencies, and the specific Django version for the matrix
54
54
# Using -e .[dev] installs the current package in editable mode with dev extras
55
55
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 }}
58
58
- name : Run tests
59
59
run : |
60
60
./check-lint.sh
Original file line number Diff line number Diff line change 78
78
DATABASES = {
79
79
"default" : {
80
80
"ENGINE" : "django.db.backends.postgresql" ,
81
- "NAME" : "testdb " ,
81
+ "NAME" : "sqf-db " ,
82
82
"USER" : "postgres" ,
83
83
"PASSWORD" : "postgres" ,
84
84
"HOST" : os .environ .get ("DEFAULT_DB_HOST" ) or "localhost" ,
85
85
"PORT" : "5432" ,
86
+ "TEST" : {
87
+ "NAME" : "sqf-db-test" ,
88
+ },
86
89
}
87
90
}
88
91
You can’t perform that action at this time.
0 commit comments