@@ -121,9 +121,9 @@ jobs:
121
121
timeout-minutes : 60
122
122
- name : Run Unit Tests
123
123
run : |
124
- just run ./ manage.py makemigrations
124
+ just manage makemigrations
125
125
just test ./tests/verify_environment.py
126
- just test-all
126
+ just test-all ${{ matrix.psycopg-version }}
127
127
- name : Store coverage files
128
128
uses : actions/upload-artifact@v4
129
129
with :
@@ -181,9 +181,9 @@ jobs:
181
181
timeout-minutes : 60
182
182
- name : Run Unit Tests
183
183
run : |
184
- just run ./ manage.py makemigrations
184
+ just manage makemigrations
185
185
just test ./tests/verify_environment.py
186
- just test-all
186
+ just test-all dev
187
187
- name : Store coverage files
188
188
uses : actions/upload-artifact@v4
189
189
with :
@@ -279,9 +279,9 @@ jobs:
279
279
run : just test-lock mysqlclient==${{ matrix.mysqlclient-version }}
280
280
- name : Run Unit Tests
281
281
run : |
282
- just run ./ manage.py makemigrations
282
+ just manage makemigrations
283
283
just test ./tests/verify_environment.py
284
- just test-all
284
+ just test-all ${{ matrix.mysqlclient-version }}
285
285
- name : Store coverage files
286
286
uses : actions/upload-artifact@v4
287
287
with :
@@ -381,9 +381,9 @@ jobs:
381
381
run : just test-lock mysqlclient==${{ matrix.mysqlclient-version }}
382
382
- name : Run Unit Tests
383
383
run : |
384
- just run ./ manage.py makemigrations
384
+ just manage makemigrations
385
385
just test ./tests/verify_environment.py
386
- just test-all
386
+ just test-all ${{ matrix.mysqlclient-version }}
387
387
- name : Store coverage files
388
388
uses : actions/upload-artifact@v4
389
389
with :
@@ -480,13 +480,12 @@ jobs:
480
480
- name : Install Release Dependencies
481
481
run : |
482
482
just init ${{ steps.sp.outputs.python-path }}
483
- just install-oracle
484
483
just test-lock Django~=${{ matrix.django-version }}.0
485
484
- name : Run Full Unit Tests
486
485
run : |
487
- just run ./ manage.py makemigrations
486
+ just manage makemigrations
488
487
just test ./tests/verify_environment.py
489
- just test
488
+ just test-all oracle
490
489
491
490
- name : Store coverage files
492
491
uses : actions/upload-artifact@v4
@@ -543,9 +542,9 @@ jobs:
543
542
timeout-minutes : 60
544
543
- name : Run Unit Tests
545
544
run : |
546
- just run ./ manage.py makemigrations
545
+ just manage makemigrations
547
546
just test ./tests/verify_environment.py
548
- just test-all
547
+ just test-all dev
549
548
- name : Store coverage files
550
549
uses : actions/upload-artifact@v4
551
550
with :
@@ -602,9 +601,9 @@ jobs:
602
601
timeout-minutes : 60
603
602
- name : Run Unit Tests
604
603
run : |
605
- just run ./ manage.py makemigrations
604
+ just manage makemigrations
606
605
just test ./tests/verify_environment.py
607
- just test-all
606
+ just test-all ${{ matrix.psycopg-version }}
608
607
- name : Store coverage files
609
608
uses : actions/upload-artifact@v4
610
609
with :
0 commit comments