Skip to content

Commit fcafb45

Browse files
committed
try fix CI
1 parent 9f51009 commit fcafb45

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

.github/workflows/lint.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ jobs:
6767
timeout-minutes: 60
6868
- name: Run Static Analysis
6969
run: |
70+
just run ./manage.py makemigrations
7071
just test ./tests/verify_environment.py
7172
just check-lint
7273
just check-format

.github/workflows/test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ jobs:
120120
timeout-minutes: 60
121121
- name: Run Unit Tests
122122
run: |
123-
poetry run ./manage.py makemigrations
123+
just run ./manage.py makemigrations
124124
just test ./tests/verify_environment.py
125125
just test-all
126126
- name: Store coverage files
@@ -180,7 +180,7 @@ jobs:
180180
timeout-minutes: 60
181181
- name: Run Unit Tests
182182
run: |
183-
poetry run ./manage.py makemigrations
183+
just run ./manage.py makemigrations
184184
just test ./tests/verify_environment.py
185185
just test-all
186186
- name: Store coverage files
@@ -278,7 +278,7 @@ jobs:
278278
run: just pin-dependency mysqlclient==${{ matrix.mysqlclient-version }}
279279
- name: Run Unit Tests
280280
run: |
281-
poetry run ./manage.py makemigrations
281+
just run ./manage.py makemigrations
282282
just test ./tests/verify_environment.py
283283
just test-all
284284
- name: Store coverage files
@@ -380,7 +380,7 @@ jobs:
380380
run: just pin-dependency mysqlclient==${{ matrix.mysqlclient-version }}
381381
- name: Run Unit Tests
382382
run: |
383-
poetry run ./manage.py makemigrations
383+
just run ./manage.py makemigrations
384384
just test ./tests/verify_environment.py
385385
just test-all
386386
- name: Store coverage files
@@ -483,7 +483,7 @@ jobs:
483483
just pin-dependency Django~=${{ matrix.django-version }}.0
484484
- name: Run Full Unit Tests
485485
run: |
486-
poetry run ./manage.py makemigrations
486+
just run ./manage.py makemigrations
487487
just test ./tests/verify_environment.py
488488
just test
489489

justfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -151,13 +151,13 @@ test-all:
151151
# todo clean this up, rerunning a lot of tests
152152
poetry run ./manage.py makemigrations
153153
poetry run pytest --cov-append
154-
poetry install -E properties
154+
poetry run pip install enum-properties
155155
poetry run ./manage.py makemigrations
156156
poetry run pytest --cov-append
157-
poetry install -E djangorestframework
157+
poetry run pip install djangorestframework
158158
poetry run ./manage.py makemigrations
159159
poetry run pytest --cov-append
160-
poetry install -E filters
160+
poetry run pip install django-filter
161161
poetry run ./manage.py makemigrations
162162
poetry run pytest --cov-append
163163

0 commit comments

Comments
 (0)