Skip to content

Commit 9c8b754

Browse files
committed
install less to run tox
1 parent 474e22f commit 9c8b754

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/pre-commit.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ jobs:
2020
with:
2121
path: ~/.cache/pre-commit
2222
key: pre-commit|${{ hashFiles('pyproject.toml', '.pre-commit-config.yaml') }}
23-
- run: uv run --locked --group pre-commit pre-commit run --show-diff-on-failure --color=always --all-files
23+
- run: uv run --locked --no-default-groups --group pre-commit pre-commit run --show-diff-on-failure --color=always --all-files
2424
- uses: pre-commit-ci/lite-action@5d6cc0eb514c891a40562a58a8e71576c5c7fb43 # v1.1.0
2525
if: ${{ !cancelled() }}

.github/workflows/tests.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
3434
with:
3535
python-version: ${{ matrix.python }}
36-
- run: uv run --locked tox run -e ${{ matrix.tox || format('py{0}', matrix.python) }}
36+
- run: uv run --locked --no-default-groups --group dev tox run -e ${{ matrix.tox || format('py{0}', matrix.python) }}
3737
typing:
3838
runs-on: ubuntu-latest
3939
steps:
@@ -50,4 +50,4 @@ jobs:
5050
with:
5151
path: ./.mypy_cache
5252
key: mypy|${{ hashFiles('pyproject.toml') }}
53-
- run: uv run --locked tox run -e typing
53+
- run: uv run --locked --no-default-groups --group dev tox run -e typing

0 commit comments

Comments
 (0)