@@ -120,6 +120,7 @@ jobs:
120120 timeout-minutes : 60
121121 - name : Run Unit Tests
122122 run : |
123+ poetry run ./manage.py makemigrations
123124 just test ./tests/verify_environment.py
124125 just test-all
125126 - name : Store coverage files
@@ -179,6 +180,7 @@ jobs:
179180 timeout-minutes : 60
180181 - name : Run Unit Tests
181182 run : |
183+ poetry run ./manage.py makemigrations
182184 just test ./tests/verify_environment.py
183185 just test-all
184186 - name : Store coverage files
@@ -276,6 +278,7 @@ jobs:
276278 run : just pin-dependency mysqlclient==${{ matrix.mysqlclient-version }}
277279 - name : Run Unit Tests
278280 run : |
281+ poetry run ./manage.py makemigrations
279282 just test ./tests/verify_environment.py
280283 just test-all
281284 - name : Store coverage files
@@ -377,6 +380,7 @@ jobs:
377380 run : just pin-dependency mysqlclient==${{ matrix.mysqlclient-version }}
378381 - name : Run Unit Tests
379382 run : |
383+ poetry run ./manage.py makemigrations
380384 just test ./tests/verify_environment.py
381385 just test-all
382386 - name : Store coverage files
@@ -477,18 +481,9 @@ jobs:
477481 just init ${{ steps.sp.outputs.python-path }}
478482 just install-oracle
479483 just pin-dependency Django~=${{ matrix.django-version }}.0
480- - name : Install Dependencies
481- run : |
482- just init ${{ steps.sp.outputs.python-path }}
483- just install-oracle
484- poetry config virtualenvs.in-project true
485- poetry run pip install --upgrade pip
486- sed -i 's/^python = .*/python = "^${{ matrix.python-version }}"/' pyproject.toml
487- poetry add django@^${{ matrix.django-version }}
488- poetry install -E all --with oracle
489- poetry run ./manage.py makemigrations
490484 - name : Run Full Unit Tests
491485 run : |
486+ poetry run ./manage.py makemigrations
492487 just test ./tests/verify_environment.py
493488 just test
494489
0 commit comments