File tree Expand file tree Collapse file tree 2 files changed +7
-8
lines changed Expand file tree Collapse file tree 2 files changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -653,7 +653,7 @@ jobs:
653
653
- name : Install Dependencies
654
654
run : |
655
655
just setup ${{ steps.sp.outputs.python-path }}
656
- just install --extra rich
656
+ just install
657
657
just test-lock Django~=${{ matrix.django-version }}.0
658
658
shell : powershell
659
659
- name : Run Powershell Tab Completion Tests
@@ -716,7 +716,7 @@ jobs:
716
716
- name : Install Dependencies
717
717
run : |
718
718
just setup ${{ steps.sp.outputs.python-path }}
719
- just install --extra rich
719
+ just install
720
720
just test-lock Django~=${{ matrix.django-version }}.0
721
721
shell : pwsh
722
722
- name : Run Powershell Tab Completion Tests
Original file line number Diff line number Diff line change @@ -40,20 +40,20 @@ install-precommit:
40
40
41
41
# update and install development dependencies
42
42
install * OPTS :
43
- uv sync {{ OPTS }}
43
+ uv sync --all-extras {{ OPTS }}
44
44
@ just run pre-commit install
45
45
46
- # install with rich dependencies
47
- install-rich :
48
- uv sync --extra rich
46
+ # install without extra dependencies
47
+ install-basic :
48
+ uv sync
49
49
50
50
# install documentation dependencies
51
51
install-docs :
52
52
uv sync --group docs --all-extras
53
53
54
54
# install with postgresql dependencies
55
55
install-psycopg3 :
56
- uv sync --group psycopg3
56
+ uv sync --all-extras -- group psycopg3
57
57
58
58
# install translation dependencies
59
59
install-translate :
@@ -193,7 +193,6 @@ test-no-rich:
193
193
194
194
# run the tests that require rich to be installed
195
195
test-rich :
196
- @ just install-rich
197
196
uv run pytest --cov-append -m rich
198
197
199
198
# run all tests
You can’t perform that action at this time.
0 commit comments