Skip to content

Commit f4de560

Browse files
committed
install all extras by default
1 parent d300e60 commit f4de560

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -653,7 +653,7 @@ jobs:
653653
- name: Install Dependencies
654654
run: |
655655
just setup ${{ steps.sp.outputs.python-path }}
656-
just install --extra rich
656+
just install
657657
just test-lock Django~=${{ matrix.django-version }}.0
658658
shell: powershell
659659
- name: Run Powershell Tab Completion Tests
@@ -716,7 +716,7 @@ jobs:
716716
- name: Install Dependencies
717717
run: |
718718
just setup ${{ steps.sp.outputs.python-path }}
719-
just install --extra rich
719+
just install
720720
just test-lock Django~=${{ matrix.django-version }}.0
721721
shell: pwsh
722722
- name: Run Powershell Tab Completion Tests

justfile

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -40,20 +40,20 @@ install-precommit:
4040

4141
# update and install development dependencies
4242
install *OPTS:
43-
uv sync {{ OPTS }}
43+
uv sync --all-extras {{ OPTS }}
4444
@just run pre-commit install
4545

46-
# install with rich dependencies
47-
install-rich:
48-
uv sync --extra rich
46+
# install without extra dependencies
47+
install-basic:
48+
uv sync
4949

5050
# install documentation dependencies
5151
install-docs:
5252
uv sync --group docs --all-extras
5353

5454
# install with postgresql dependencies
5555
install-psycopg3:
56-
uv sync --group psycopg3
56+
uv sync --all-extras --group psycopg3
5757

5858
# install translation dependencies
5959
install-translate:
@@ -193,7 +193,6 @@ test-no-rich:
193193

194194
# run the tests that require rich to be installed
195195
test-rich:
196-
@just install-rich
197196
uv run pytest --cov-append -m rich
198197

199198
# run all tests

0 commit comments

Comments
 (0)