Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,6 @@ jobs:
key: http_cache-${{ runner.os }}-${{ matrix.python-version }}

- name: Run Nox
env:
UV_PRERELEASE: allow
run: |
nox --verbose

Expand Down Expand Up @@ -135,8 +133,6 @@ jobs:
nox --version

- name: Run Nox
env:
UV_PRERELEASE: allow
run: |
nox -- -m "external"

Expand Down
18 changes: 9 additions & 9 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def mypy(session: nox.Session) -> None:
session.run_install(
"uv",
"sync",
"--frozen",
"--locked",
"--no-dev",
"--group=typing",
*(f"--extra={extra}" for extra in extras),
Expand All @@ -94,7 +94,7 @@ def tests(session: nox.Session) -> None:
session.run_install(
"uv",
"sync",
"--frozen",
"--locked",
"--no-dev",
"--group=testing",
*(f"--extra={extra}" for extra in extras),
Expand Down Expand Up @@ -128,7 +128,7 @@ def coverage(session: nox.Session) -> None:
session.run_install(
"uv",
"sync",
"--frozen",
"--locked",
"--no-dev",
"--group=testing",
env=_install_env(session),
Expand All @@ -151,7 +151,7 @@ def benches(session: nox.Session) -> None:
session.run_install(
"uv",
"sync",
"--frozen",
"--locked",
"--no-dev",
"--group=testing",
*(f"--extra={extra}" for extra in extras),
Expand Down Expand Up @@ -182,7 +182,7 @@ def dependencies(session: nox.Session) -> None:
session.run_install(
"uv",
"sync",
"--frozen",
"--locked",
"--inexact",
"--no-dev",
*(f"--extra={extra}" for extra in extras),
Expand All @@ -208,7 +208,7 @@ def update_snapshots(session: nox.Session) -> None:
session.run_install(
"uv",
"sync",
"--frozen",
"--locked",
"--no-dev",
"--group=testing",
*(f"--extra={extra}" for extra in extras),
Expand All @@ -231,7 +231,7 @@ def doctest(session: nox.Session) -> None:
session.run_install(
"uv",
"sync",
"--frozen",
"--locked",
"--no-dev",
"--group=testing",
env=_install_env(session),
Expand All @@ -249,7 +249,7 @@ def docs(session: nox.Session) -> None:
session.run_install(
"uv",
"sync",
"--frozen",
"--locked",
"--no-dev",
"--group=docs",
env=_install_env(session),
Expand Down Expand Up @@ -279,7 +279,7 @@ def docs_serve(session: nox.Session) -> None:
session.run_install(
"uv",
"sync",
"--frozen",
"--locked",
"--inexact",
"--no-dev",
"--group=docs",
Expand Down
Loading