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
6 changes: 3 additions & 3 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def run_tests_with_coverage(session: nox.Session) -> None:
session.posargs.remove("no-config")
extra = ["--no-config"]

session.run_install("uv", "sync", "--group", "test", *SYNC_ARGS, *extra)
session.run_install("uv", "sync", *SYNC_ARGS, *extra)

coverage = functools.partial(session.run, "uv", "run", *extra, "coverage")

Expand All @@ -89,7 +89,7 @@ def run_tests_with_coverage(session: nox.Session) -> None:
@nox.session(name="combine", python=False)
def combine_coverage(session: nox.Session) -> None:
"""Combine parallel-mode coverage files and produce reports."""
session.run_install("uv", "sync", "--group", "test", *SYNC_ARGS)
session.run_install("uv", "sync", *SYNC_ARGS)

coverage = functools.partial(session.run, "uv", "run", "coverage")

Expand All @@ -102,7 +102,7 @@ def combine_coverage(session: nox.Session) -> None:
@nox.session(name="lint", python=False)
def run_linters(session: nox.Session) -> None:
"""Run code linters, and type checking against all files."""
session.run_install("uv", "sync", "--group", "test", "--group", "lint", *SYNC_ARGS)
session.run_install("uv", "sync", "--group", "lint", *SYNC_ARGS)

for linter_args in LINTERS:
session.run("uv", "run", *linter_args)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ lint = [
"flake8-pep585",
"mypy",
]
test = [
dev = [
"pytest",
"pytest-randomly",
"coverage",
Expand Down
20 changes: 10 additions & 10 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.