@@ -114,6 +114,7 @@ jobs:
114
114
sed -i 's/^python = .*/python = "^${{ matrix.python-version }}"/' pyproject.toml
115
115
poetry add django@^${{ matrix.django-version }}
116
116
poetry install --no-interaction --with ${{ matrix.psycopg-version }}
117
+ poetry run ./manage.py makemigrations
117
118
- name : No Optional Dependency Unit Tests
118
119
run : |
119
120
poetry run pytest --cov-append
@@ -199,6 +200,7 @@ jobs:
199
200
sed -i 's/^python = .*/python = "^${{ matrix.python-version }}"/' pyproject.toml
200
201
poetry add django@^${{ matrix.django-version }}
201
202
poetry install --no-interaction -E all
203
+ poetry run ./manage.py makemigrations
202
204
- name : Run Full Unit Tests
203
205
run : |
204
206
poetry run pytest
@@ -290,6 +292,7 @@ jobs:
290
292
sed -i 's/^python = .*/python = "^${{ matrix.python-version }}"/' pyproject.toml
291
293
poetry add django@^${{ matrix.django-version }}
292
294
poetry install -E all --with mysql
295
+ poetry run ./manage.py makemigrations
293
296
- name : Install mysqlclient if needed
294
297
if : ${{ matrix.mysqlclient-version != '' }}
295
298
run : poetry run pip install -U mysqlclient=="${{ matrix.mysqlclient-version }}"
@@ -391,6 +394,7 @@ jobs:
391
394
sed -i 's/^python = .*/python = "^${{ matrix.python-version }}"/' pyproject.toml
392
395
poetry add django@^${{ matrix.django-version }}
393
396
poetry install -E all --with mysql
397
+ poetry run ./manage.py makemigrations
394
398
- name : Install mysqlclient if needed
395
399
if : ${{ matrix.mysqlclient-version != '' }}
396
400
run : poetry run pip install -U mysqlclient=="${{ matrix.mysqlclient-version }}"
@@ -500,6 +504,7 @@ jobs:
500
504
sed -i 's/^python = .*/python = "^${{ matrix.python-version }}"/' pyproject.toml
501
505
poetry add django@^${{ matrix.django-version }}
502
506
poetry install -E all --with oracle
507
+ poetry run ./manage.py makemigrations
503
508
- name : Run Full Unit Tests
504
509
run : |
505
510
poetry run pytest -s
0 commit comments