Skip to content

Commit 3ee795f

Browse files
committed
fix test-all on windows
1 parent b1f0d7b commit 3ee795f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

justfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -151,16 +151,16 @@ check: check-lint check-format check-types check-package check-docs check-docs-l
151151
test-all:
152152
# No Optional Dependency Unit Tests
153153
# todo clean this up, rerunning a lot of tests
154-
poetry run ./manage.py makemigrations
154+
poetry run python manage.py makemigrations
155155
poetry run pytest --cov-append
156156
poetry install -E properties
157-
poetry run ./manage.py makemigrations
157+
poetry run python manage.py makemigrations
158158
poetry run pytest --cov-append
159159
poetry install -E rest
160-
poetry run ./manage.py makemigrations
160+
poetry run python manage.py makemigrations
161161
poetry run pytest --cov-append
162162
poetry install -E filters
163-
poetry run ./manage.py makemigrations
163+
poetry run python manage.py makemigrations
164164
poetry run pytest --cov-append
165165

166166
# run tests

0 commit comments

Comments
 (0)